-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
57 lines (52 loc) · 2.14 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
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<!-- ==================================================================== -->
<!-- Build requires Java SE 8 or later -->
<!-- Releases require Java SE 9 or later -->
<!-- ==================================================================== -->
<parent>
<groupId>org.joda</groupId>
<artifactId>joda-parent</artifactId>
<version>1.1.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>joda-beans-integrate</artifactId>
<packaging>pom</packaging>
<name>Joda-Beans integration</name>
<version>2.2-SNAPSHOT</version>
<description>Joda-Beans - Integration projects</description>
<url>http://www.joda.org/${joda.artifactId}/</url>
<!-- ==================================================================== -->
<inceptionYear>2007</inceptionYear>
<scm>
<connection>scm:git:https://github.com/JodaOrg/${joda.artifactId}.git</connection>
<developerConnection>scm:git:https://github.com/JodaOrg/${joda.artifactId}.git</developerConnection>
<url>https://github.com/JodaOrg/${joda.artifactId}</url>
<tag>HEAD</tag>
</scm>
<!-- ==================================================================== -->
<developers>
<developer>
<id>jodastephen</id>
<name>Stephen Colebourne</name>
<roles>
<role>Project Lead</role>
</roles>
<timezone>0</timezone>
<url>https://github.com/jodastephen</url>
</developer>
</developers>
<!-- ==================================================================== -->
<modules>
<module>freemarker</module>
<module>kryo</module>
<module>mongo</module>
</modules>
<!-- ==================================================================== -->
<properties>
<!-- Parent pom.xml control -->
<joda.artifactId>joda-beans-integrate</joda.artifactId>
<maven.install.skip>true</maven.install.skip>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
</project>