Author: ks156 Date: 2008-12-18 11:29:17 +0100 (Thu, 18 Dec 2008) New Revision: 3168
Added: software_suite_v2/tuxware/java-api/trunk/pom.xml Log: * Added pom.xml to compile this project with maven : - mvn clean install to compile the project - mvn deploy to deploy it in /tmp/maven2 Added: software_suite_v2/tuxware/java-api/trunk/pom.xml =================================================================== --- software_suite_v2/tuxware/java-api/trunk/pom.xml (rev 0) +++ software_suite_v2/tuxware/java-api/trunk/pom.xml 2008-12-18 10:29:17 UTC (rev 3168) @@ -0,0 +1,39 @@ +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>com.tuxdroid</groupId> + <artifactId>tuxdroid-java-api</artifactId> + <packaging>jar</packaging> + <version>0.0.2</version> + <name>Tuxdroid Java API</name> + <url>http://www.tuxisalive.com</url> + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <scope>test</scope> + </dependency> + </dependencies> + <build> + <sourceDirectory>src</sourceDirectory> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins + </groupId> + <artifactId>maven-compiler-plugin + </artifactId> + <configuration> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> + </plugins> + </build> + <distributionManagement> + <repository> + <id>kysoh</id> + <name>Kysoh Repository</name> + <url>file:///tmp/maven2</url> + </repository> + </distributionManagement> +</project> Property changes on: software_suite_v2/tuxware/java-api/trunk/pom.xml ___________________________________________________________________ Name: svn:mime-type + text/xml Name: svn:keywords + Id Name: svn:eol-style + native ------------------------------------------------------------------------------ SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. The future of the web can't happen without you. Join us at MIX09 to help pave the way to the Next Web now. Learn more and register at http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ _______________________________________________ Tux-droid-svn mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/tux-droid-svn
