Author: glandais Date: 2008-02-21 14:34:53 +0000 (Thu, 21 Feb 2008) New Revision: 1174 Added: trunk/simexplorer-is/simexplorer-is-entities/ trunk/simexplorer-is/simexplorer-is-entities/pom.xml Log: Resplit Added: trunk/simexplorer-is/simexplorer-is-entities/pom.xml =================================================================== --- trunk/simexplorer-is/simexplorer-is-entities/pom.xml (rev 0) +++ trunk/simexplorer-is/simexplorer-is-entities/pom.xml 2008-02-21 14:34:53 UTC (rev 1174) @@ -0,0 +1,93 @@ +<?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>simexplorer-is</groupId--> + <artifactId>simexplorer-is-entities</artifactId> + <name>Entities</name> + + <version>0.0.1-SNAPSHOT</version> + <description>simexplorer-is entities module</description> + <packaging>jar</packaging> + + <parent> + <groupId>simexplorer-is</groupId> + <artifactId>simexplorer-is</artifactId> + <version>0.0.1-SNAPSHOT</version> + </parent> + + <profiles> + <profile> + <id>project</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <properties> + <!--launch unit tests--> + <maven.test.skip>false</maven.test.skip> + </properties> + </profile> + </profiles> + + <build> + <plugins> + <!-- + <plugin> + <groupId>lutinplugin</groupId> + <artifactId>maven-generator-plugin</artifactId> + <version>0.51-SNAPSHOT</version> + <executions> + <execution> + <id>Generator</id> + <phase>generate-sources</phase> + <configuration> + <srcDirZuml>src/xmi</srcDirZuml> + <srcXmiDest>target/gen/xmi/</srcXmiDest> + <fullPackagePath> + fr.cemagref.simexplorer.is.entities + </fullPackagePath> + <extractedPackages> + fr.cemagref.simexplorer.is.entities + </extractedPackages> + <srcGenDest> + target/gen/objectmodel/ + </srcGenDest> + <includes>**/*.objectmodel</includes> + <templates> + fr.cemagref.simexplorer.is.generator.SimExplorerGenerator + </templates> + <destDirGen>target/gen/java</destDirGen> + <defaultPackage> + fr.cemagref.simexplorer.is.entities + </defaultPackage> + </configuration> + <goals> + <goal>zargo2xmi</goal> + <goal>xmi2objectmodel</goal> + <goal>generate</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>simexplorer-is</groupId> + <artifactId>simexplorer-is-generator</artifactId> + <version>0.1-SNAPSHOT</version> + <scope>compile</scope> + </dependency> + </dependencies> + </plugin> + --> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <version>2.3</version> + </dependency> + </dependencies> +</project>