-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpom.xml
61 lines (55 loc) · 1.95 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
<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>org.ibissource</groupId>
<artifactId>ibis4template</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>Ibis4Template</name>
<description>ibis template for new projects</description>
<url>ibis4example.ibissource.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<iaf.version>7.6-RC1</iaf.version>
<timestamp>${maven.build.timestamp}</timestamp>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
</properties>
<dependencies>
<dependency>
<groupId>org.ibissource</groupId>
<artifactId>ibis-adapterframework-webapp</artifactId>
<version>${iaf.version}</version>
<type>war</type>
</dependency>
<!-- The dependencies on h2, dbcp and geronimo-jms are provided for convenience to avoid requiring them on the Tomcat classpath -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.162</version>
</dependency>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jms_1.1_spec</artifactId>
<scope>runtime</scope>
<version>1.1</version>
</dependency>
</dependencies>
<build>
<defaultGoal>package</defaultGoal>
<plugins>
<plugin>
<groupId>org.ibissource</groupId>
<artifactId>ibis-war-plugin</artifactId>
<version>0.2</version>
<extensions>true</extensions>
<configuration>
<enableSecurityConstraints>false</enableSecurityConstraints>
</configuration>
</plugin>
</plugins>
</build>
</project>