-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
98 lines (98 loc) · 3.15 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
<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>
<groupId>nl.architolk.ldt</groupId>
<artifactId>lds</artifactId>
<version>1.6.5-SNAPSHOT</version>
<name>lds</name>
<packaging>war</packaging>
<properties>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>
<buildTimestamp>${maven.build.timestamp}</buildTimestamp>
<license-maven-plugin.version>2.11</license-maven-plugin.version>
<license.failIfMissing>false</license.failIfMissing>
<release.version>1.6.0</release.version>
<release.date>2016-03-13</release.date>
<patch.date>2016-04-27</patch.date>
</properties>
<dependencies>
<dependency>
<groupId>nl.architolk.ldt</groupId>
<artifactId>ldt</artifactId>
<version>1.8.1-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
<groupId>nl.architolk.ldt</groupId>
<artifactId>rdbprocessors</artifactId>
<version>1.5.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<webResources>
<resource>
<directory>morphrdb</directory>
<includes>
<include>WEB-INF/lib/**</include>
</includes>
<excludes>
<exclude>WEB-INF/lib/log4j-1.2.14.jar</exclude>
<exclude>WEB-INF/lib/scala-library.jar</exclude>
<exclude>WEB-INF/lib/slf4j-api-1.5.8.jar</exclude>
<exclude>WEB-INF/lib/slf4j-log4j12-1.5.8.jar</exclude>
</excludes>
</resource>
</webResources>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${license-maven-plugin.version}</version>
<configuration>
<header>src/etc/license/ldt.txt</header>
<mapping>
<xpl>XML_STYLE</xpl>
<ttl>SCRIPT_STYLE</ttl>
</mapping>
<properties>
<release.version>${release.version}</release.version>
<release.date>${release.date}</release.date>
<patch.date>${patch.date}</patch.date>
</properties>
<excludes>
<exclude>examples/**</exclude>
<exclude>ext-resources/**</exclude>
<exclude>license-builder/**</exclude>
<exclude>orbeon/**</exclude>
<exclude>processors/**</exclude>
<exclude>LICENSE</exclude>
<exclude>**/*.md</exclude>
<exclude>**/*.bat</exclude>
<exclude>**/pom.xml</exclude>
<exclude>images/**</exclude>
</excludes>
</configuration>
<dependencies>
<dependency>
<groupId>nl.architolk.ldt</groupId>
<artifactId>license-builder</artifactId>
<version>${license-maven-plugin.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>