Author: jcouteau Date: 2010-11-05 10:05:34 +0100 (Fri, 05 Nov 2010) New Revision: 12 Url: http://chorem.org/repositories/revision/incubator/12 Log: Add entities module Added: refComp/entities/ refComp/entities/LICENSE.txt refComp/entities/README.txt refComp/entities/changelog.txt refComp/entities/pom.xml refComp/entities/src/ refComp/entities/src/main/ refComp/entities/src/main/xmi/ refComp/entities/src/main/xmi/UseCaseINRA-RefComp.zargo Property changes on: refComp/entities ___________________________________________________________________ Added: svn:ignore + *.iml *.ipr target Added: refComp/entities/pom.xml =================================================================== --- refComp/entities/pom.xml (rev 0) +++ refComp/entities/pom.xml 2010-11-05 09:05:34 UTC (rev 12) @@ -0,0 +1,83 @@ +<?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/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + + <parent> + <groupId>fr.inra</groupId> + <artifactId>refcomp</artifactId> + <version>0.1-SNAPSHOT</version> + </parent> + + <groupId>fr.inra.refcomp</groupId> + <artifactId>entities</artifactId> + + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + + <name>${project.artifactId}</name> + <description>RefComp Client entities module</description> + + <dependencies> + <dependency> + <groupId>org.nuiton.wikitty</groupId> + <artifactId>wikitty-api</artifactId> + </dependency> + </dependencies> + + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + + <packaging>jar</packaging> + + <build> + + <plugins> + + <plugin> + <groupId>org.nuiton.eugene</groupId> + <artifactId>maven-eugene-plugin</artifactId> + <executions> + <execution> + <id>api generator</id> + <!-- + do not use the phase generate-XXX because it can be excecuted + several times... + --> + <phase>process-sources</phase> + <configuration> + <inputs> + <input>zargo:src/main/xmi/:*.zargo</input> + <input>classpath:model:/:wikitty.objectmodel + </input> + </inputs> + <fullPackagePath>fr.inra.refcomp</fullPackagePath> + <defaultPackage>fr.inra.refcomp</defaultPackage> + <extractedPackages> + fr.inra.refcomp.entities,org.nuiton.wikitty + </extractedPackages> + <generatedPackages>fr.inra.refcomp.entities + </generatedPackages> + <templates> + org.nuiton.wikitty.generator.WikittyMetaGenerator + </templates> + </configuration> + <goals> + <goal>smart-generate</goal> + </goals> + </execution> + </executions> + </plugin> + + </plugins> + </build> + +</project> \ No newline at end of file Added: refComp/entities/src/main/xmi/UseCaseINRA-RefComp.zargo =================================================================== (Binary files differ) Property changes on: refComp/entities/src/main/xmi/UseCaseINRA-RefComp.zargo ___________________________________________________________________ Added: svn:mime-type + application/octet-stream