r1327 - in guix/trunk: . guix-test guix-test/src guix-test/src/main guix-test/src/main/resources guix-test/src/test guix-test/src/test/java guix-test/src/test/java/org guix-test/src/test/java/org/codelutin
Author: kmorin Date: 2009-04-17 13:55:40 +0000 (Fri, 17 Apr 2009) New Revision: 1327 Added: guix/trunk/guix-test/ guix/trunk/guix-test/pom.xml guix/trunk/guix-test/src/ guix/trunk/guix-test/src/main/ guix/trunk/guix-test/src/main/java/ guix/trunk/guix-test/src/main/resources/ guix/trunk/guix-test/src/main/resources/i18n/ guix/trunk/guix-test/src/test/ guix/trunk/guix-test/src/test/java/ guix/trunk/guix-test/src/test/java/org/ guix/trunk/guix-test/src/test/java/org/codelutin/ guix/trunk/guix-test/src/test/java/org/codelutin/guix/ Log: Property changes on: guix/trunk/guix-test ___________________________________________________________________ Name: svn:ignore + target Added: guix/trunk/guix-test/pom.xml =================================================================== --- guix/trunk/guix-test/pom.xml (rev 0) +++ guix/trunk/guix-test/pom.xml 2009-04-17 13:55:40 UTC (rev 1327) @@ -0,0 +1,74 @@ +<?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> + + + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + <parent> + <groupId>org.codelutin.guix</groupId> + <artifactId>guix</artifactId> + <version>1.0-SNAPSHOT</version> + </parent> + + <artifactId>guix-test</artifactId> + + <dependencies> + <dependency> + <groupId>xpp3</groupId> + <artifactId>xpp3</artifactId> + <version>1.1.3.3</version> + </dependency> + </dependencies> + + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + <name>guix-test</name> + <description>Guix test</description> + + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + + <packaging>jar</packaging> + + <!-- ************************************************************* --> + <!-- *** Build Environment ************************************** --> + <!-- ************************************************************* --> + <scm> + <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/buix/guix/trunk/guix-test</connection> + <!--developerConnection>scm:svn:svn+ssh://sletellier@labs.libre-entreprise.org/svnroot/buix/guix/trunk</developerConnection--> + <!--url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/guix/trunk/?root=buix</url--> + </scm> + + <build> + + <plugins> + + <plugin> + <groupId>org.codelutin.guix</groupId> + <artifactId>guix-maven-plugin</artifactId> + <version>${project.version}</version> + <executions> + <execution> + <phase>compile</phase> + <goals> + <goal>testMojo</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <artifactId>maven-dependency-plugin</artifactId> + <configuration> + <outputDirectory>${project.build.directory}/lib</outputDirectory> + </configuration> + </plugin> + + </plugins> + </build> + +</project>
participants (1)
-
kmorin@users.labs.libre-entreprise.org