-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
81 lines (72 loc) · 2.23 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<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>de.oglimmer</groupId>
<artifactId>cyc</artifactId>
<version>0.5-SNAPSHOT</version>
<packaging>pom</packaging>
<developers>
<developer>
<name>Oliver Zimpasser</name>
<email>oglimmer@gmail.com</email>
</developer>
</developers>
<issueManagement>
<url>https://github.com/oglimmer/cyc/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<licenses>
<license>
<name>LGPL</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
</license>
</licenses>
<scm>
<url>https://github.com/oglimmer/cyc</url>
<connection>scm:git:git://github.com/oglimmer/cyc.git</connection>
<developerConnection>scm:git:git@github.com:oglimmer/cyc.git</developerConnection>
<tag>HEAD</tag>
</scm>
<modules>
<module>engine-api</module>
<module>engine</module>
<module>engine-container</module>
<module>web</module>
<module>rules</module>
<module>persistence</module>
</modules>
<build>
<plugins>
<!-- Some version of this plugin just "forget" to commit the tag -->
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.9.4</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>19.0</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>