-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
460 lines (427 loc) · 13.9 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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2008, 2015, Washington University in St. Louis.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Products derived from the software may not be called "Looking Glass", nor
may "Looking Glass" appear in their name, without prior written permission
of Washington University in St. Louis.
4. All advertising materials mentioning features or use of this software must
display the following acknowledgement: "This product includes software
developed by Washington University in St. Louis"
5. The gallery of art assets and animations provided with this software is
contributed by Electronic Arts Inc. and may be used for personal,
non-commercial, and academic use only. Redistributions of any program
source code that utilizes The Sims 2 Assets must also retain the copyright
notice, list of conditions and the disclaimer contained in
The Alice 3.0 Art Gallery License.
DISCLAIMER:
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND. ANY AND ALL
EXPRESS, STATUTORY OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
TITLE, AND NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS,
COPYRIGHT OWNERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING FROM OR OTHERWISE RELATING TO
THE USE OF OR OTHER DEALINGS WITH THE SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
-->
<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>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<groupId>edu.wustl.lookingglass</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<!-- Note: when merging/upon conflict, do NOT accept Alice version number. -->
<!-- This version should ALWAYS be the current Looking Glass version. -->
<version>2017.05.05-SNAPSHOT</version>
<name>Looking Glass</name>
<url>https://lookingglass.wustl.edu/</url>
<licenses>
<license>
<name>LOOKING GLASS END USER LICENSE AGREEMENT</name>
<url>https://lookingglass.wustl.edu/licenses/lookingglass-license.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<jogl.version>2.3.2</jogl.version>
<alice.model.version>2016.08.19</alice.model.version>
<sound.gallery.version>2013.08.08</sound.gallery.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
<dependency>
<groupId>org.jogamp.jogl</groupId>
<artifactId>jogl-all</artifactId>
<version>${jogl.version}</version>
</dependency>
<dependency>
<groupId>org.jogamp.gluegen</groupId>
<artifactId>gluegen-rt</artifactId>
<version>${jogl.version}</version>
</dependency>
<dependency>
<groupId>uk.co.caprica</groupId>
<artifactId>vlcj</artifactId>
<version>3.9.0</version>
</dependency>
<dependency>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-swing</artifactId>
<version>4.2</version>
</dependency>
<dependency>
<groupId>javax.media</groupId>
<artifactId>jmf</artifactId>
<version>2.1.1e</version>
</dependency>
<dependency>
<groupId>com.sun</groupId>
<artifactId>javamp3</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>UTF-8</encoding>
<debug>false</debug>
<optimize>true</optimize>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
<includes>
<include>**/*.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.8</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>1.3.1</version>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
</plugin>
<plugin>
<groupId>org.commonjava.maven.plugins</groupId>
<artifactId>directory-maven-plugin</artifactId>
<version>0.1</version>
</plugin>
<plugin>
<groupId>org.zanata</groupId>
<artifactId>zanata-maven-plugin</artifactId>
<version>4.1.1</version>
<configuration>
<projectConfig>${parent.basedir}/zanata.xml</projectConfig>
<sourceLang>en-US</sourceLang>
<deleteObsoleteModules>true</deleteObsoleteModules>
<interactiveMode>false</interactiveMode>
<srcDir>${project.basedir}/src/main</srcDir>
<transDir>${project.basedir}/src/l10n</transDir>
<!-- Use Zanata's crowd-sourcing feature to copy identical translations to our
project. -->
<!-- <copyTrans>true</copyTrans> -->
<!-- <useCache>false</useCache> -->
<!-- <dryRun>true</dryRun> -->
</configuration>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.commonjava.maven.plugins</groupId>
<artifactId>directory-maven-plugin</artifactId>
<versionRange>[0.1,)</versionRange>
<goals>
<goal>highest-basedir</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.commonjava.maven.plugins</groupId>
<artifactId>directory-maven-plugin</artifactId>
<version>0.1</version>
<executions>
<execution>
<id>parent.path.property</id>
<goals>
<goal>highest-basedir</goal>
</goals>
<phase>initialize</phase>
<configuration>
<property>parent.basedir</property>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<!-- We only allow property, FXML, and CSS files in the java source directories.
All other resource should go in the src/main/resources directory. -->
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.fxml</include>
<include>**/*.css</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>**/*.gitkeep</exclude>
</excludes>
</resource>
<!-- generated i18n translation files -->
<resource>
<directory>src/l10n/java</directory>
<excludes>
<exclude>**/*.gitkeep</exclude>
</excludes>
</resource>
<resource>
<directory>src/l10n/resources</directory>
<excludes>
<exclude>**/*.gitkeep</exclude>
</excludes>
</resource>
</resources>
</build>
<profiles>
<profile>
<id>build</id>
<activation>
<property>
<name>!build.disable</name>
</property>
</activation>
<modules>
<!-- Note: Looking Glass does NOT use the issue-reporting project. -->
<module>core</module>
<module>core/ast</module>
<module>core/croquet</module>
<module>core/glrender</module>
<module>core/i18n</module>
<module>core/ide</module>
<module>core/image-editor</module>
<module>core/resources</module>
<module>core/scenegraph</module>
<module>core/story-api-migration</module>
<module>core/story-api</module>
<module>core/util</module>
<module>distribution</module>
<module>lookingglass/lookingglass-ide</module>
<module>lookingglass/lookingglass-tools</module>
</modules>
</profile>
<profile>
<id>zanata</id>
<build>
<plugins>
<plugin>
<groupId>org.zanata</groupId>
<artifactId>zanata-maven-plugin</artifactId>
<executions>
<!-- https://zanata.ci.cloudbees.com/job/zanata-client-site/site/zanata-maven-plugin/push-module-mojo.html -->
<execution>
<id>zanata.push</id>
<phase>generate-resources</phase>
<goals>
<goal>push-module</goal>
</goals>
</execution>
<!-- https://zanata.ci.cloudbees.com/job/zanata-client-site/site/zanata-maven-plugin/pull-module-mojo.html -->
<execution>
<id>zanata.pull</id>
<phase>generate-resources</phase>
<goals>
<goal>pull-module</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<!-- The profile is used for localizers to pull and test their localizations -->
<!-- $ mvn compile -Pbuild,!sign-jar -Dzanata.locales=es,es-ES,es-CR -->
<!-- or use Eclipse launcher: Zanata - Test Locales -->
<profile>
<id>zanata-pull</id>
<activation>
<property>
<name>zanata.locales</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.zanata</groupId>
<artifactId>zanata-maven-plugin</artifactId>
<executions>
<execution>
<id>zanata.pull.locale</id>
<phase>generate-resources</phase>
<goals>
<goal>pull-module</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>package-distribution</id>
<activation>
<property>
<name>distribution.package</name>
</property>
</activation>
<modules>
<module>core/resources</module>
<module>distribution</module>
</modules>
</profile>
</profiles>
<repositories>
<repository>
<id>edu.wustl.lookingglass</id>
<name>Looking Glass Repository</name>
<url>https://maven.lookingglass.wustl.edu/lookingglass/</url>
</repository>
<repository>
<id>edu.wustl.lookingglass.external</id>
<name>Looking Glass External Repository</name>
<url>https://maven.lookingglass.wustl.edu/external/</url>
</repository>
<repository>
<id>edu.wustl.lookingglass.nonfree</id>
<name>Looking Glass Non-Free Repository</name>
<url>https://maven.lookingglass.wustl.edu/nonfree/</url>
</repository>
<repository>
<id>org.alice</id>
<name>Alice Repository</name>
<url>http://maven.alice.org/alice</url>
</repository>
<repository>
<id>org.alice.external</id>
<name>Alice External Repository</name>
<url>http://maven.alice.org/external</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>edu.wustl.lookingglass</id>
<name>Looking Glass Repository</name>
<url>https://maven.lookingglass.wustl.edu/lookingglass/</url>
</pluginRepository>
<pluginRepository>
<id>edu.wustl.lookingglass.external</id>
<name>Looking Glass External Repository</name>
<url>https://maven.lookingglass.wustl.edu/external/</url>
</pluginRepository>
<pluginRepository>
<id>edu.wustl.lookingglass.nonfree</id>
<name>Looking Glass Non-Free Repository</name>
<url>https://maven.lookingglass.wustl.edu/nonfree/</url>
</pluginRepository>
<pluginRepository>
<id>org.alice</id>
<name>Alice Repository</name>
<url>http://maven.alice.org/alice</url>
</pluginRepository>
<pluginRepository>
<id>org.alice.external</id>
<name>Alice External Repository</name>
<url>http://maven.alice.org/external</url>
</pluginRepository>
</pluginRepositories>
</project>