-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
84 lines (75 loc) · 2.75 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
82
83
84
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>de.cismet.cids</groupId>
<artifactId>cids-parent</artifactId>
<version>2.4</version>
</parent>
<groupId>de.cismet.cids.custom.sudplan</groupId>
<artifactId>cids-custom-sudplan-commons</artifactId>
<version>2.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>cids Custom Sudplan Commons</name>
<description>!!! description pending !!!</description>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<distribution>repo</distribution>
<url>http://www.gnu.org/licenses/lgpl-3.0.html</url>
</license>
</licenses>
<prerequisites>
<maven>3</maven>
</prerequisites>
<scm>
<connection>https://github.com/cismet/cids-custom-sudplan-commons.git</connection>
<developerConnection>scm:git:[email protected]:cismet/cids-custom-sudplan-commons.git</developerConnection>
<url>https://github.com/cismet/cids-custom-sudplan-commons</url>
</scm>
<repositories>
<repository>
<id>cismet-repo</id>
<url>https://repo.cismet.de/repo</url>
<releases>
<enabled>true</enabled>
<checksumPolicy>warn</checksumPolicy>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<checksumPolicy>warn</checksumPolicy>
<updatePolicy>interval:60</updatePolicy>
</snapshots>
</repository>
</repositories>
<properties>
<!--
ToDo make constants for the single values to ease the configuration
of the child POMs.
-->
<de.cismet.libDir>lib/localSudplan</de.cismet.libDir>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<!-- disabled because sudplan makes use of automatic generation -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-installed</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>