svnno****@sourc*****
svnno****@sourc*****
2009年 9月 7日 (月) 00:51:38 JST
Revision: 3511 http://sourceforge.jp/projects/jiemamy/svn/view?view=rev&revision=3511 Author: daisuke_m Date: 2009-09-07 00:51:38 +0900 (Mon, 07 Sep 2009) Log Message: ----------- Share project "master" into "https://svn.sourceforge.jp/svnroot/jiemamy" Added Paths: ----------- athena/master/trunk/.project athena/master/trunk/pom.xml Added: athena/master/trunk/.project =================================================================== --- athena/master/trunk/.project (rev 0) +++ athena/master/trunk/.project 2009-09-06 15:51:38 UTC (rev 3511) @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>master</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + </buildSpec> + <natures> + </natures> +</projectDescription> Property changes on: athena/master/trunk/.project ___________________________________________________________________ Added: svn:mime-type + text/plain Added: athena/master/trunk/pom.xml =================================================================== --- athena/master/trunk/pom.xml (rev 0) +++ athena/master/trunk/pom.xml 2009-09-06 15:51:38 UTC (rev 3511) @@ -0,0 +1,269 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + <groupId>org.jiemamy</groupId> + <artifactId>master</artifactId> + <packaging>pom</packaging> + <version>1.0</version> + <name>Jiemamy - Master POM</name> + <url>http://report.jiemamy.org/master</url> + <inceptionYear>2007</inceptionYear> + <mailingLists> + <mailingList> + <name>Jiemamy-users</name> + <subscribe></subscribe> + <post>jiema****@lists*****</post> + <archive>http://lists.sourceforge.jp/mailman/archives/jiemamy-users/</archive> + </mailingList> + <mailingList> + <name>Jiemamy-dev</name> + <subscribe></subscribe> + <post>jiema****@googl*****</post> + <archive>http://groups.google.com/group/jiemamy-dev/topics/</archive> + </mailingList> + </mailingLists> + <developers> + <developer> + <id>daisuke</id> + <name>MIYAMOTO Daisuke</name> + <email>daisuke_m****@users*****</email> + <url>http://d.hatena.ne.jp/daisuke-m/</url> + <timezone>+9</timezone> + </developer> + </developers> + <licenses> + <license> + <name>The Apache Software License, Version 2.0</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + <scm> + <connection>scm:svn:http://svn.sourceforge.jp/svnroot/jiemamy/master/trunk</connection> + <developerConnection>scm:svn:svn+ssh://svn.sourceforge.jp/svnroot/jiemamy/master/trunk</developerConnection> + <url>http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/masete/trunk/?root=jiemamy</url> + </scm> + <build> + <plugins> + <plugin> + <artifactId>maven-resources-plugin</artifactId> + <configuration> + <encoding>UTF-8</encoding> + </configuration> + </plugin> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.5</source> + <target>1.5</target> + <encoding>UTF-8</encoding> + </configuration> + </plugin> + <plugin> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>source-jar</id> + <phase>package</phase> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.4.2</version><!-- see http://code.google.com/p/q4e/issues/detail?id=431 --> + <configuration> + <forkMode>pertest</forkMode> + <includes> + <include>**/*Test.java</include> + </includes> + <argLine>-enableassertions -Xms512M -Xmx512M</argLine> + <testFailureIgnore>true</testFailureIgnore> + </configuration> + </plugin> + <plugin> + <artifactId>maven-site-plugin</artifactId> + <configuration> + <locales>ja,en</locales> + <inputEncoding>UTF-8</inputEncoding> + <outputEncoding>UTF-8</outputEncoding> + </configuration> + </plugin> + <plugin> + <groupId>com.googlecode.maven-overview-plugin</groupId> + <artifactId>maven-overview-plugin</artifactId> + <version>1.3</version> + </plugin> + </plugins> + </build> + <pluginRepositories> + <pluginRepository> + <id>Codehaus Snapshots</id> + <url>http://snapshots.repository.codehaus.org/</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>true</enabled> + </releases> + </pluginRepository> + <pluginRepository> + <id>overview plugin</id> + <url>https://kungfoo-m2.googlecode.com/svn/release-repo</url> + <releases> + <enabled>true</enabled> + </releases> + </pluginRepository> + </pluginRepositories> + <reporting> + <plugins> + <plugin> + <groupId>com.googlecode.maven-overview-plugin</groupId> + <artifactId>maven-overview-plugin</artifactId> + <version>1.3</version> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + <configuration> + <instrumentation> + <includes> + <include>**/*.class</include> + </includes> + <excludes> + <exclude>${basedir}</exclude> + </excludes> + </instrumentation> + <formats> + <format>xml</format> + <format>html</format> + </formats> + </configuration> + </plugin> + <plugin> + <artifactId>maven-surefire-report-plugin</artifactId> + <reportSets> + <reportSet> + <reports> + <report>report-only</report> + </reports> + </reportSet> + </reportSets> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>taglist-maven-plugin</artifactId> + <configuration> + <encoding>UTF-8</encoding> + <tags> + <tag>TODO</tag> + <tag>FIXME</tag> + <tag>UNDONE</tag> + <tag>HACK</tag> + <tag>THINK</tag> + <tag>RESOURCE</tag> + <tag>DOCME</tag> + </tags> + </configuration> + </plugin> + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <source>1.5</source> + <charset>UTF-8</charset> + <encoding>UTF-8</encoding> + <docencoding>UTF-8</docencoding> + <footer><![CDATA[ + Copyright 2009 Jiemamy Project and the Others. + ]]></footer> + <linksource>true</linksource> + <links> + <link>http://java.sun.com/j2se/1.5.0/docs/api/</link> + </links> + </configuration> + <reportSets> + <reportSet> + <id>non-aggregate</id> + <reports> + <report>javadoc</report> + </reports> + </reportSet> + <reportSet> + <id>aggregate</id> + <reports> + <report>aggregate</report> + </reports> + </reportSet> + </reportSets> + </plugin> + <plugin> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <encoding>UTF-8</encoding> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + <configuration> + <threshold>High</threshold> + <effort>Max</effort> + </configuration> + </plugin> + <plugin> + <artifactId>maven-pmd-plugin</artifactId> + <configuration> + <sourceEncoding>UTF-8</sourceEncoding> + <targetJdk>1.5</targetJdk> + <linkXRef>true</linkXRef> + <rulesets> + <string>/rulesets/braces.xml</string> + <string>/rulesets/j2ee.xml</string> + </rulesets> + </configuration> + </plugin> + <plugin> + <artifactId>maven-jxr-plugin</artifactId> + <configuration> + <aggregate>true</aggregate> + <inputEncoding>UTF-8</inputEncoding> + <outputEncoding>UTF-8</outputEncoding> + <linkJavadoc>true</linkJavadoc> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>jdepend-maven-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>dashboard-maven-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>javancss-maven-plugin</artifactId> + </plugin> + </plugins> + </reporting> + <distributionManagement> + <site> + <id>jiemamy-report</id> + <name>maven-jiemamy-plugin-site</name> + <url>scp://report.jiemamy.org/var/www/report/master/${project.version}</url> + </site> + <repository> + <id>jiemamy-release-repository</id> + <name>Jiemamy Repository</name> + <url>scp://report.jiemamy.org/var/www/maven/release</url> + </repository> + <snapshotRepository> + <id>jiemamy-snapshot-repository</id> + <name>Jiemamy Repository</name> + <url>scp://report.jiemamy.org/var/www/maven/snapshot</url> + </snapshotRepository> + </distributionManagement> +</project> Property changes on: athena/master/trunk/pom.xml ___________________________________________________________________ Added: svn:mime-type + text/plain