Last active
August 29, 2015 14:15
-
-
Save mosser/6dca8d5079900769d7a8 to your computer and use it in GitHub Desktop.
Description du projet Maven (POM)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> | |
<groupId>fr.unice.polytech.ogl</groupId> | |
<artifactId>islxx</artifactId> <!-- CHANGE ME --> | |
<version>0.1-SNAPSHOT</version> | |
<packaging>jar</packaging> | |
<name>ISLXX :: Nom de l'equipe</name> <!-- CHANGE ME --> | |
<url>http://www.i3s.unice.fr/~mosser/teaching/tse</url> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<compiler.source>1.7</compiler.source> | |
<compiler.target>1.7</compiler.target> | |
</properties> | |
<repositories> | |
<repository> | |
<id>oss.sonatype.org-releases</id> | |
<name>releases</name> | |
<url>http://oss.sonatype.org/content/repositories/releases</url> | |
</repository> | |
<repository> | |
<id>oss.sonatype.org-snapshots</id> | |
<name>snapshots</name> | |
<url>http://oss.sonatype.org/content/repositories/snapshots</url> | |
</repository> | |
<repository> | |
<id>central</id> | |
<name>Maven repository</name> | |
<url>http://repo1.maven.org/maven2</url> | |
</repository> | |
</repositories> | |
<dependencies> | |
<dependency> | |
<groupId>eu.ace-design</groupId> | |
<artifactId>island-player</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.2</version> | |
<configuration> | |
<source>1.7</source> | |
<target>1.7</target> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment