-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
85 lines (75 loc) · 2.37 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
85
<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>farsight-wm</groupId>
<artifactId>wm-parent</artifactId>
<version>10.5.0</version>
<relativePath>../wm-parent/pom.xml</relativePath>
</parent>
<artifactId>is-package-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>1.0.1</version>
<name>farsight-wm:is-package-maven-plugin</name>
<description>
A maven plugin that helps in building IS packages.
</description>
<url>https://github.com/farsight-wm/is-package-maven-plugin</url>
<issueManagement>
<url>https://github.com/farsight-wm/is-package-maven-plugin/issues</url>
<system>GitHub.com</system>
</issueManagement>
<scm>
<url>https://github.com/farsight-wm/is-package-maven-plugin</url>
<connection>scm:git:https://github.com/farsight-wm/is-package-maven-plugin.git</connection>
<developerConnection>scm:git:https://github.com/farsight-wm/is-package-maven-plugin.git</developerConnection>
<tag>HEAD</tag>
</scm>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>manual</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Cornelius Wicke</name>
<url>https://www.xing.com/profile/Cornelius_Wicke</url>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.6.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.3.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>