Author: echatellier Date: 2014-06-16 12:21:54 +0200 (Mon, 16 Jun 2014) New Revision: 40 Url: http://forge.codelutin.com/projects/isis-fish-community/repository/revisions... Log: Add pom for community. Fix version to latest. Added: trunk/pom.xml Added: trunk/pom.xml =================================================================== --- trunk/pom.xml (rev 0) +++ trunk/pom.xml 2014-06-16 10:21:54 UTC (rev 40) @@ -0,0 +1,105 @@ +<?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"> + + <!--The version of maven's project object model --> + <modelVersion>4.0.0</modelVersion> + + <!--A unique name for this project --> + <groupId>fr.ifremer</groupId> + <artifactId>isis-fish-community</artifactId> + <name>IsisFish community data</name> + + <!--ejb, jar, war... --> + <packaging>jar</packaging> + + <!--Version --> + <version>0</version> + + <!--Description --> + <description>Community data for Isis-fish</description> + <inceptionYear>2013</inceptionYear> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.reporting.outputDirectory>UTF-8</project.reporting.outputDirectory> + <maven.test.skip>true</maven.test.skip> + </properties> + + <organization> + <name>CodeLutin</name> + <url>http://www.codelutin.com/</url> + </organization> + + <build> + <sourceDirectory>${basedir}</sourceDirectory> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.1</version> + <configuration> + <source>1.7</source> + <target>1.7</target> + <excludes> + <exclude>**/simulations/**</exclude> + <exclude>**/formules/**</exclude> + </excludes> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.3.1</version> + <executions> + <execution> + <goals> + <goal>exec</goal> + </goals> + </execution> + </executions> + <configuration> + <classpathScope>runtime</classpathScope> + </configuration> + </plugin> + </plugins> + </build> + + <!-- Tracking --> + <issueManagement> + <url>http://forge.codelutin.com/projects/isis-fish-community/issues</url> + </issueManagement> + + <!-- Librairies --> + <dependencies> + <dependency> + <groupId>fr.ifremer</groupId> + <artifactId>isis-fish</artifactId> + <version>LATEST</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>fr.ifremer</groupId> + <artifactId>isis-fish-data</artifactId> + <version>LATEST</version> + <scope>compile</scope> + </dependency> + </dependencies> + + <distributionManagement> + <site> + <id>forge.codelutin.com</id> + <url>scp://forge.codelutin.com/var/lib/redmine-forge.codelutin.com/project-site/isis-fish-community</url> + </site> + </distributionManagement> + + <repositories> + <repository> + <id>nuiton.release</id> + <url>http://maven.nuiton.org/release</url> + </repository> + <repository> + <id>nuiton.snapshot</id> + <url>http://maven.nuiton.org/snapshot</url> + </repository> + </repositories> +</project> Property changes on: trunk/pom.xml ___________________________________________________________________ Added: svn:mime-type + text/xml Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native
participants (1)
-
echatellier@users.forge.codelutin.com