-
Notifications
You must be signed in to change notification settings - Fork 12
/
pom.xml
151 lines (137 loc) · 6.1 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<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>
<parent>
<groupId>org.exist-db</groupId>
<artifactId>exist-parent</artifactId>
<version>6.2.0</version>
<relativePath>exist-parent</relativePath>
</parent>
<groupId>gov.state.history</groupId>
<artifactId>hsg-project</artifactId>
<version>2.0.0-SNAPSHOT</version>
<name>hsg-project</name>
<description>All dependencies needed for hsg development</description>
<url>https://github.com/HistoryAtState/hsg-project</url>
<organization>
<name>Office of the Historian</name>
<url>https://history.state.gov</url>
</organization>
<scm>
<url>https://github.com/HistoryAtState/hsg-project.git</url>
<connection>scm:git:https://github.com/HistoryAtState/hsg-project.git</connection>
<developerConnection>scm:git:https://github.com/HistoryAtState/hsg-project.git</developerConnection>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/HistoryAtState/hsg-project/issues</url>
</issueManagement>
<developers>
<developer>
<name>Joe Wicentowski</name>
<organization>Office of The Historian</organization>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.source>1.8</project.build.source>
<project.build.target>1.8</project.build.target>
<exist.version>6.2.0</exist.version>
<ant-contrib.version>1.0b3</ant-contrib.version>
<xspec.version>2.2.4</xspec.version>
<schxslt.version>1.8.5</schxslt.version>
</properties>
<dependencies>
<dependency>
<groupId>org.exist-db</groupId>
<artifactId>exist-ant</artifactId>
<version>${exist.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ant-contrib</groupId>
<artifactId>ant-contrib</artifactId>
<version>${ant-contrib.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
<excludeTransitive>true</excludeTransitive>
</configuration>
</execution>
<execution>
<id>unpack-xspec</id>
<goals>
<goal>unpack</goal>
</goals>
</execution>
</executions>
<configuration>
<artifactItems>
<artifactItem>
<groupId>io.xspec</groupId>
<artifactId>xspec</artifactId>
<version>${xspec.version}</version>
<classifier>enduser-files</classifier>
<type>zip</type><!-- "tar.gz" is also available -->
<fileMappers>
<org.codehaus.plexus.components.io.filemappers.RegExpFileMapper>
<pattern>^\Qxspec-${xspec.version}/\E</pattern>
<replacement>./xspec/</replacement>
</org.codehaus.plexus.components.io.filemappers.RegExpFileMapper>
</fileMappers>
</artifactItem>
<artifactItem>
<groupId>name.dmaus.schxslt</groupId>
<artifactId>schxslt</artifactId>
<version>${schxslt.version}</version>
<includes>xslt/2.0/</includes>
<fileMappers>
<org.codehaus.plexus.components.io.filemappers.RegExpFileMapper>
<pattern>^\Qxslt/2.0\E</pattern>
<replacement>./schxslt-xslt-only/</replacement>
</org.codehaus.plexus.components.io.filemappers.RegExpFileMapper>
</fileMappers>
</artifactItem>
</artifactItems>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>exist-db</id>
<url>https://repo.evolvedbinary.com/repository/exist-db/</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
<repository>
<id>exist-db-snapshots</id>
<url>https://repo.evolvedbinary.com/repository/exist-db-snapshots/</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>clojars.org</id>
<url>https://clojars.org/repo</url>
</pluginRepository>
</pluginRepositories>
</project>