28 lines
959 B
XML
28 lines
959 B
XML
|
<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>tp-deezer3-HerbronTanguy</groupId>
|
||
|
<artifactId>tp-deezer3-HerbronTanguy</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<build>
|
||
|
<sourceDirectory>src</sourceDirectory>
|
||
|
<testSourceDirectory>test</testSourceDirectory>
|
||
|
<testResources>
|
||
|
<testResource>
|
||
|
<directory>test</directory>
|
||
|
<excludes>
|
||
|
<exclude>**/*.java</exclude>
|
||
|
</excludes>
|
||
|
</testResource>
|
||
|
</testResources>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.7.0</version>
|
||
|
<configuration>
|
||
|
<source>1.7</source>
|
||
|
<target>1.7</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|