-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
48 lines (43 loc) · 1.07 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<artifactId>fluentbuilder</artifactId>
<groupId>org.a2sdl</groupId>
<name>A FluentBuilder for Java</name>
<version>1.0</version>
<organization>
<name>NCIBI</name>
<url>http://www.ncibi.org/</url>
</organization>
<inceptionYear>2009</inceptionYear>
<licenses>
<license>
<name>Educational Community License, Version 2.0</name>
<url>http://www.osedu.org/licenses/ECL-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<packaging>jar</packaging>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>