source: pipe/pom.xml@ 13

Last change on this file since 13 was 13, checked in by wouter, 3 years ago

added root pom. Now build with just 'mvn clean package' in root.

File size: 974 bytes
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <groupId>nl.tudelft.ii</groupId>
6 <artifactId>pipe</artifactId>
7 <version>1.0.0</version>
8 <packaging>jar</packaging>
9
10 <name>pipe</name>
11 <url>http://maven.apache.org</url>
12
13 <properties>
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15 <maven.compiler.target>1.8</maven.compiler.target>
16 <maven.compiler.source>1.8</maven.compiler.source>
17 <basedir>.</basedir>
18 <passwd>${env.ARTIFACTORY_PASS}</passwd>
19 <jackson-2-version>2.12.3</jackson-2-version>
20 </properties>
21
22 <dependencies>
23 <dependency>
24 <groupId>junit</groupId>
25 <artifactId>junit</artifactId>
26 <version>4.11</version>
27 <scope>test</scope>
28 </dependency>
29
30 </dependencies>
31
32 <build>
33 <plugins>
34
35 </plugins>
36 </build>
37
38</project>
Note: See TracBrowser for help on using the repository browser.