-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
120 lines (114 loc) · 3.33 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?xml version='1.0' encoding='ISO-8859-1'?>
<project 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'
xmlns='http://maven.apache.org/POM/4.0.0'>
<modelVersion>4.0.0</modelVersion>
<groupId>net.nisgits.executablewar</groupId>
<artifactId>executable-war</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Executable WARs</name>
<description>
The Executable WARs is a library and a Maven plugin that makes it possible to create web applications that can
be run from the command line or deployed in a container.
</description>
<url>http://wiki.github.com/stigkj/executable-war</url>
<prerequisites>
<maven>2.0.6</maven>
</prerequisites>
<inceptionYear>2010</inceptionYear>
<licenses>
<license>
<name>Apache</name>
<url>http://wwww.apache.org</url>
</license>
</licenses>
<developers>
<developer>
<id>stigkj</id>
<name>Stig Kleppe-Jørgensen</name>
<email>[email protected]</email>
<url>http://www.nisgits.net</url>
<organization>NOS Clearing ASA</organization>
<organizationUrl>http://www.nosclearing.com</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>-1</timezone>
<properties>
<gtalk>[email protected]</gtalk>
<skype>stig_kleppejorgensen</skype>
<msn>[email protected]</msn>
</properties>
</developer>
</developers>
<modules>
<module>executable-war-library</module>
<module>maven-executable-war-plugin</module>
</modules>
<scm>
<connection>scm:git:git://github.com/stigkj/maven-executable-war-plugin.git</connection>
<developerConnection>scm:git:[email protected]:stigkj/maven-executable-war-plugin.git</developerConnection>
<url>http://github.com/stigkj/maven-executable-war-plugin</url>
</scm>
<!-- TODO does github have issue management?
<issueManagement>
<system>JIRA</system>
<url>http://jira.codehaus.org/browse/?</url>
</issueManagement>
-->
<properties>
<mavenVersion>2.0.6</mavenVersion>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>