-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpom.xml
335 lines (335 loc) · 11.7 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
<?xml version="1.0" encoding="UTF-8"?>
<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>com.googlecode.redbox-mint</groupId>
<artifactId>mint-local-curation-demo</artifactId>
<version>1.7-SNAPSHOT</version>
<packaging>${packaging}</packaging>
<name>The Mint - Local Curation Demo</name>
<parent>
<groupId>com.googlecode.redbox-mint</groupId>
<artifactId>mint</artifactId>
<version>1.7-SNAPSHOT</version>
</parent>
<properties>
<!-- Used in build -->
<mint.version>1.7-SNAPSHOT</mint.version>
<!-- Runtime values, will replace placeholders
in config and control scripts -->
<packaging>pom</packaging>
<app.location.windows>${project.home}</app.location.windows>
<app.location.linux>${project.home}</app.location.linux>
<server.port>9001</server.port>
<amq.port>9201</amq.port>
<amq.stomp.port>9202</amq.stomp.port>
<dir.home>${project.home}/home</dir.home>
<dir.portal>${project.home}/portal</dir.portal>
<dir.server>${project.home}/server</dir.server>
<dir.solr>${project.home}/solr</dir.solr>
<dir.storage>${project.home}/storage</dir.storage>
<dir.geonames>${dir.home}/geonames/solr</dir.geonames>
<server.url.base>http://${ip.address}:${server.port}/mint/</server.url.base>
<smtp.host>localhost</smtp.host>
<admin.email>admin@localhost</admin.email>
<!-- Control scripts try to auto-detect proxy. Use this value if you
want Java to specifically exclude certain hosts from proxying. -->
<non.proxy.hosts>localhost</non.proxy.hosts>
</properties>
<dependencies>
<!-- Mint Core - We want to explicitly define versions here because
ReDBox is listed as both a dependency and a parent. Some odd
consequences of using ${project.version} can result -->
<dependency>
<groupId>com.googlecode.redbox-mint</groupId>
<artifactId>mint-project</artifactId>
<type>pom</type>
<version>1.7-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.googlecode.redbox-mint</groupId>
<artifactId>mint</artifactId>
<type>pom</type>
<version>1.7-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.googlecode.redbox-mint</groupId>
<artifactId>mint-config</artifactId>
<version>1.7-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.googlecode.redbox-mint</groupId>
<artifactId>plugin-transaction-curation-mint</artifactId>
<version>1.7-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.googlecode.redbox-mint</groupId>
<artifactId>sruclient-mint</artifactId>
<version>1.7-SNAPSHOT</version>
</dependency>
<!-- Mint Curation Plugin -->
<dependency>
<groupId>com.googlecode.redbox-mint</groupId>
<artifactId>plugin-transformer-local</artifactId>
<version>1.7-SNAPSHOT</version>
</dependency>
<!-- Clean up a dependency error raised during 1.6.1 redbox release -->
<dependency>
<groupId>com.googlecode.the-fascinator</groupId>
<artifactId>fascinator-portal</artifactId>
<type>warpath</type>
<version>1.2-SNAPSHOT</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>build-package</id>
<properties>
<app.location.windows>c:/tf2/mint</app.location.windows>
<app.location.linux>/opt/mint</app.location.linux>
<server.url.base>http://localhost:${server.port}/mint/</server.url.base>
</properties>
<!-- Used for creating an install - omits local build system settings -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>package.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>ide</id>
<properties>
<packaging>jar</packaging>
<project.home>../</project.home>
</properties>
</profile>
</profiles>
<!-- The standard build/deploy process for making a server -->
<build>
<resources>
<resource>
<directory>src/main/config/home</directory>
</resource>
<resource>
<directory>src/main/config/portal</directory>
</resource>
<resource>
<directory>src/main/config/server</directory>
</resource>
<resource>
<directory>src/main/config/solr</directory>
</resource>
</resources>
<plugins>
<!-- 1st - Unpack Generic Mint setup -->
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<id>unpack-home</id>
<phase>generate-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<includes>home/**,portal/**,server/**,solr/**</includes>
<outputDirectory>${project.home}</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>com.googlecode.redbox-mint</groupId>
<artifactId>mint-config</artifactId>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<!-- 2nd - Deploy Institutional build over default Mint -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.3</version>
<configuration>
<encoding>UTF-8</encoding>
<!-- Workaround bug MRESOURCES-104 -->
<delimiters>
<delimiter>${*}</delimiter>
</delimiters>
<useDefaultDelimiters>false</useDefaultDelimiters>
</configuration>
<executions>
<!-- Configuration -->
<execution>
<id>copy-home</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${dir.home}</outputDirectory>
<includeEmptyDirs>true</includeEmptyDirs>
<overwrite>true</overwrite>
<resources>
<!-- Most config copied first as is -->
<resource>
<directory>src/main/config/home</directory>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
<!-- Web portal -->
<execution>
<id>copy-portal</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${dir.portal}</outputDirectory>
<includeEmptyDirs>true</includeEmptyDirs>
<overwrite>true</overwrite>
<resources>
<resource>
<directory>src/main/config/portal</directory>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
<!-- Server files -->
<execution>
<id>copy-server</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${dir.server}</outputDirectory>
<includeEmptyDirs>true</includeEmptyDirs>
<overwrite>true</overwrite>
<resources>
<resource>
<directory>src/main/config/server</directory>
<filtering>false</filtering>
<excludes>
<exclude>**/*.bat</exclude>
<exclude>**/*.sh</exclude>
</excludes>
</resource>
</resources>
</configuration>
</execution>
<!-- Control Scripts -->
<execution>
<id>copy-scripts</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${dir.server}</outputDirectory>
<includeEmptyDirs>true</includeEmptyDirs>
<overwrite>true</overwrite>
<resources>
<!-- Resolve some paths in our control scripts -->
<resource>
<directory>src/main/config/server</directory>
<filtering>true</filtering>
<includes>
<include>**/*.bat</include>
<include>**/*.sh</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
<!-- Solr logging -->
<execution>
<id>copy-solr</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${dir.solr}</outputDirectory>
<includeEmptyDirs>true</includeEmptyDirs>
<resources>
<resource>
<directory>src/main/config/solr</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<!-- Set executable attribute for shell scripts -->
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>process-resources</phase>
<configuration>
<tasks>
<chmod file="${dir.server}/*.sh" perm="740" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>fascinator-snapshots</id>
<url>http://dev.redboxresearchdata.com.au/nexus/content/repositories/central-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>redbox-nexus</id>
<url>http://dev.redboxresearchdata.com.au/nexus/content/groups/public/</url>
</repository>
</repositories>
<scm>
<url>https://github.com/redbox-mint/mint-build-dev-local</url>
<developerConnection>scm:git:https://github.com/redbox-mint/mint-build-dev-local</developerConnection>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>redbox-nexus-snapshots</id>
<name>Redbox Nexus Snapshots</name>
<url>http://dev.redboxresearchdata.com.au/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>redbox-nexus-releases</id>
<name>Redbox Nexus Releases</name>
<url>http://dev.redboxresearchdata.com.au/nexus/content/repositories/releases/</url>
</repository>
</distributionManagement>
</project>