Author: glandais Date: 2007-12-03 17:37:52 +0000 (Mon, 03 Dec 2007) New Revision: 32 Added: trunk/simexplorer-si-storage/pom.xml trunk/simexplorer-si-storage/profiles.xml Log: Maven2 config files Added: trunk/simexplorer-si-storage/pom.xml =================================================================== --- trunk/simexplorer-si-storage/pom.xml (rev 0) +++ trunk/simexplorer-si-storage/pom.xml 2007-12-03 17:37:52 UTC (rev 32) @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<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"> + + <!--The version of maven's project object model--> + <modelVersion>4.0.0</modelVersion> + + <!--lutinproject.xml--> + <parent> + <groupId>lutinlib</groupId> + <artifactId>lutinproject</artifactId> + <version>2.2</version> + </parent> + + <!--A unique name for this project--> + <artifactId>simexplorersi</artifactId> + <name>simexplorersi-stockage</name> + + <!--ejb, jar, war...--> + <packaging>jar</packaging> + + <!--Version--> + <version>1.0.0</version> + + <!--Description--> + <description>simexplorersi stockage</description> + <inceptionYear>2007</inceptionYear> + + <build> + <resources> + <resource> + <directory>${maven.src.dir}/resources</directory> + <includes> + <include>**/*</include> + </includes> + </resource> + </resources> + </build> + + <!--Librairies--> + <dependencies> + <dependency> + <groupId>org.apache.lucene</groupId> + <artifactId>lucene-core</artifactId> + <version>2.2.0</version> + <scope>compile</scope> + </dependency> + </dependencies> + +</project> \ No newline at end of file Added: trunk/simexplorer-si-storage/profiles.xml =================================================================== --- trunk/simexplorer-si-storage/profiles.xml (rev 0) +++ trunk/simexplorer-si-storage/profiles.xml 2007-12-03 17:37:52 UTC (rev 32) @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<settings> + <profiles> + <profile> + <id>project</id> + + <activation> + <activeByDefault>true</activeByDefault> + </activation> + + <properties> + <!--Source base dir--> + <maven.src.dir>${basedir}/target/src-build</maven.src.dir> + + <!--Test--> + <maven.test.skip>true</maven.test.skip> + + <!--Compile with ?--> + <maven.compile.source>1.5</maven.compile.source> + <maven.compile.target>1.5</maven.compile.target> + + <!--Verbose--> + <maven.verbose>false</maven.verbose> + </properties> + </profile> + </profiles> +</settings>