svnno****@sourc*****
svnno****@sourc*****
2009年 3月 26日 (木) 23:38:09 JST
Revision: 3005 http://svn.sourceforge.jp/view?root=jiemamy&view=rev&rev=3005 Author: daisuke_m Date: 2009-03-26 23:38:09 +0900 (Thu, 26 Mar 2009) Log Message: ----------- factory-enhancer-exampleリリース準備。 Modified Paths: -------------- leto/factory-enhancer-example/trunk/pom.xml -------------- next part -------------- Modified: leto/factory-enhancer-example/trunk/pom.xml =================================================================== --- leto/factory-enhancer-example/trunk/pom.xml 2009-03-26 14:31:55 UTC (rev 3004) +++ leto/factory-enhancer-example/trunk/pom.xml 2009-03-26 14:38:09 UTC (rev 3005) @@ -1,68 +1,92 @@ <?xml version="1.0" encoding="UTF-8"?> <project - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - <modelVersion>4.0.0</modelVersion> - <artifactId>factory-enhancer-example</artifactId> - <name>Factory Enhancer Examples</name> - <packaging>jar</packaging> - <groupId>org.jiemamy</groupId> - <version>0.1.0-SNAPSHOT</version> - <build> - <defaultGoal>package</defaultGoal> - <plugins> - <plugin> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <encoding>UTF-8</encoding> - <source>1.5</source> - <target>1.5</target> - </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-eclipse-plugin</artifactId> - <configuration> - <downloadSources>true</downloadSources> - <classpathContainers> - <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5</classpathContainer> - </classpathContainers> - </configuration> - </plugin> - </plugins> - </build> - <reporting> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <configuration> - <encoding>UTF-8</encoding> - <charset>UTF-8</charset> - <docencoding>UTF-8</docencoding> - <footer><![CDATA[ - Copyright 2007-2009 Jiemamy Project and the Others. - ]]></footer> - </configuration> - </plugin> - </plugins> - </reporting> - <dependencies> - <dependency> - <groupId>org.jiemamy</groupId> - <artifactId>factory-enhancer</artifactId> - <version>0.1.0-SNAPSHOT</version> - </dependency> - </dependencies> + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <artifactId>factory-enhancer-example</artifactId> + <name>Factory Enhancer Examples</name> + <packaging>jar</packaging> + <groupId>org.jiemamy</groupId> + <version>0.1.0</version> + <build> + <defaultGoal>package</defaultGoal> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <encoding>UTF-8</encoding> + <source>1.5</source> + <target>1.5</target> + </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-eclipse-plugin</artifactId> + <configuration> + <downloadSources>true</downloadSources> + <classpathContainers> + <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5</classpathContainer> + </classpathContainers> + </configuration> + </plugin> + </plugins> + </build> + <repositories> + <repository> + <id>jiemamy.org</id> + <name>Jiemamy Repository</name> + <url>http://maven.jiemamy.org/release</url> + </repository> + </repositories> + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <encoding>UTF-8</encoding> + <charset>UTF-8</charset> + <docencoding>UTF-8</docencoding> + <footer><![CDATA[ + Copyright 2007-2009 Jiemamy Project and the Others. + ]]></footer> + </configuration> + </plugin> + </plugins> + </reporting> + <dependencies> + <dependency> + <groupId>org.jiemamy</groupId> + <artifactId>factory-enhancer</artifactId> + <version>0.1.0</version> + </dependency> + </dependencies> + <distributionManagement> + <site> + <id>jiemamy-report</id> + <name>maven-jiemamy-plugin-site</name> + <url>scp://report.jiemamy.org/var/www/report/factory-enhancer-example/${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>