Author: ks156
Date: 2008-12-19 11:27:15 +0100 (Fri, 19 Dec 2008)
New Revision: 3234

Added:
   software_suite_v2/software/tools/tuxController/trunk/pom.xml
Log:
* Added pom.xml to cmpile this tool with maven.
  (mvn clean install)


Added: software_suite_v2/software/tools/tuxController/trunk/pom.xml
===================================================================
--- software_suite_v2/software/tools/tuxController/trunk/pom.xml                
                (rev 0)
+++ software_suite_v2/software/tools/tuxController/trunk/pom.xml        
2008-12-19 10:27:15 UTC (rev 3234)
@@ -0,0 +1,97 @@
+<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>tuxController</groupId>
+    <artifactId>tux_controller</artifactId>
+    <packaging>jar</packaging>
+    <version>0.0.1</version>
+    <name>Tux Controller</name>
+    <url>http://www.kysoh.com</url>
+    <repositories>
+       <repository>
+           <id>kysoh</id>
+           <name>Kysoh Repository</name>
+           <layout>default</layout>
+           <url>http://ftp.kysoh.com/maven2/</url>
+           <snapshots>
+               <enabled>false</enabled>
+           </snapshots>
+       </repository>
+       <repository>
+           <id>karma-lab</id>
+           <name>KarmaLab Repository Switchboard</name>
+           <layout>default</layout>
+           <url>http://artisan.karma-lab.net/software/repository</url>
+           <snapshots>
+               <enabled>false</enabled>
+           </snapshots>
+       </repository>
+    </repositories>
+
+    <dependencies>
+       <dependency>
+           <groupId>net.karmaLab</groupId>
+           <artifactId>karmalab-commons</artifactId>
+           <version>1.2</version>
+       </dependency>
+       <dependency>
+           <groupId>com.tuxisalive</groupId>
+           <artifactId>tuxdroid-java-api</artifactId>
+           <version>0.0.2</version>
+       </dependency>
+       <dependency>
+           <groupId>com.l2fprod</groupId>
+           <artifactId>skinlf</artifactId>
+           <version>6.7</version>
+       </dependency>
+       <dependency>
+           <groupId>com.tuxdroid</groupId>
+           <artifactId>tuxdroid-installer-paths</artifactId>
+           <version>0.0.1</version>
+       </dependency>
+    </dependencies>
+    <build>
+       <!--Include the pictures and the .properties files.-->
+       <!--Excluse all other files.-->
+       <resources>
+           <resource>
+               <directory>src</directory>
+               <includes>
+                   <include>**/*.png</include>
+                   <include>**/*.properties</include>
+               </includes>
+               <excludes>
+                   <exclude>**/*.java</exclude>
+               </excludes>
+
+           </resource>
+       </resources>
+       <sourceDirectory>src</sourceDirectory>
+       <plugins>
+           <plugin>
+               <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-jar-plugin</artifactId>
+               <configuration>
+                   <archive>
+                       <!--Set the manifest : mainclass and classpath-->
+                       <manifest>
+                           <mainClass>tuxController.main</mainClass>
+                           <packageName>tuxController</packageName>
+                       </manifest>
+                       <manifestEntries>
+                           <Class-Path>./tuxdroid-api.jar ./skinlf.jar 
./tuxdroid-installer-paths.jar</Class-Path>
+                       </manifestEntries>
+                   </archive>
+               </configuration>
+           </plugin>
+           <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>
+</project>


Property changes on: 
software_suite_v2/software/tools/tuxController/trunk/pom.xml
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native


------------------------------------------------------------------------------
_______________________________________________
Tux-droid-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tux-droid-svn

Reply via email to