This repository was archived by the owner on Dec 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpom.xml
More file actions
945 lines (930 loc) · 42 KB
/
pom.xml
File metadata and controls
945 lines (930 loc) · 42 KB
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
<?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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>es.e-ucm.ead</groupId>
<artifactId>ead-base</artifactId>
<version>2.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<!-- ===================================================================== -->
<!-- PROJECT INFO -->
<!-- ===================================================================== -->
<name>eAdventure Platform</name>
<description>
e-Adventure is an authoring tool for the creation of videogames,
especially designed for educational purposes.
</description>
<url>http://e-adventure.e-ucm.es</url>
<inceptionYear>2010</inceptionYear>
<licenses>
<license>
<name>LGPL v3.0</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
<distribution>manual</distribution>
<comments>GNU Lesser Public License v3.0</comments>
</license>
</licenses>
<mailingLists>
<mailingList>
<name>e-Adventure User Forum</name>
<!--subscribe></subscribe -->
<!--unsubscribe></unsubscribe -->
<!--post></post -->
<archive>http://e-adventure.e-ucm.es/moodle/</archive>
</mailingList>
</mailingLists>
<issueManagement>
<system>Github</system>
<url>https://github.com/e-ucm/eadventure/issues</url>
</issueManagement>
<organization>
<name>e-UCM Research Team</name>
<url>http://www.e-ucm.es</url>
</organization>
<developers>
<developer>
<id>emarchiori</id>
<name>Eugenio Marchiori</name>
<email>emarchiori@gmail.com</email>
<url>http://www.e-ucm.es/people/emarchiori</url>
<organization>e-UCM Research Team</organization>
<organizationUrl>http://www.e-ucm.es</organizationUrl>
<roles>
<role>project lead</role>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
<developer>
<id>angelserranolaguna</id>
<name>Angel Serrano Laguna</name>
<email>aserrano@e-ucm.es</email>
<url>http://www.metafisicainformatica.com/</url>
<organization>e-UCM Research Team</organization>
<organizationUrl>http://www.e-ucm.es</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
<developer>
<id>manuel.freire</id>
<name>Manuel Freire Moran</name>
<email>manuel.freire@fdi.ucm.es</email>
<organization>e-UCM Research Team</organization>
<organizationUrl>http://www.e-ucm.es</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<!-- ===================================================================== -->
<!-- BUILD PROFILES -->
<!-- ===================================================================== -->
<profiles>
<profile>
<!-- builds everything -->
<id>all</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gwt.module>es.eucm.ead.engine.Engine</gwt.module>
<gwt.logLevel>INFO</gwt.logLevel>
<gwt.style>OBFUSCATED</gwt.style>
</properties>
<modules>
<module>build-tools</module>
<!-- Model: base for all the other projects -->
<module>core/model</module>
<!-- Tools & Utils -->
<module>core/tools</module>
<module>core/tools-java</module>
<module>core/tools-gwt</module>
<!-- Reader -->
<module>core/reader</module>
<!-- Resources -->
<module>core/engine-resources</module>
<!-- Engine -->
<module>core/engine-core</module>
<module>core/engine-desktop</module>
<module>core/engine-android</module>
<module>core/engine-html</module>
<!-- Writer -->
<module>core/writer</module>
<!-- Importer -->
<module>core/importer</module>
<!-- Exporter -->
<module>core/exporter</module>
<!-- Tests -->
<module>tests/techdemo</module>
<module>tests/playground</module>
<!-- GUI tools -->
<module>guitools/exportergui</module>
<!-- Extensions -->
<!-- <module>extensions/weev</module> -->
<!-- Editor -->
<module>core/editor-core</module>
<!-- Legacy Plugins -->
<module>extensions/legacy-plugins-model</module>
<module>extensions/legacy-plugins-engine-core</module>
<module>extensions/legacy-plugins-engine-desktop</module>
</modules>
</profile>
<profile>
<!-- Build with third-party contributed modules -->
<id>withContrib</id>
<modules>
</modules>
</profile>
<profile>
<!-- Build with experimental modules -->
<id>sandbox</id>
<modules>
</modules>
</profile>
<profile>
<!-- Editor-only build -->
<id>editor</id>
<modules>
<module>core/editor-core</module>
</modules>
</profile>
<profile>
<!-- Desktop-engine-only build -->
<id>engine-desktop</id>
<modules>
<module>core/model</module>
<module>core/engine-core</module>
<module>core/engine-desktop</module>
</modules>
</profile>
<profile>
<!-- Android-engine-only build -->
<id>engine-android</id>
<modules>
<module>core/engine-android</module>
</modules>
</profile>
<profile>
<id>desktop</id>
<modules>
<module>core/model</module>
<module>core/tools</module>
<module>core/tools-java</module>
<module>core/reader</module>
<module>core/engine-resources</module>
<module>core/engine-core</module>
<module>core/engine-desktop</module>
<module>extensions/legacy-plugins-model</module>
<module>extensions/legacy-plugins-engine-core</module>
<module>extensions/legacy-plugins-engine-desktop</module>
</modules>
</profile>
<profile>
<id>gwt</id>
<properties>
<gwt.module>es.eucm.ead.engine.EngineDebug</gwt.module>
<gwt.logLevel>DEBUG</gwt.logLevel>
<gwt.style>PRETTY</gwt.style>
<gwt.draftCompile>true</gwt.draftCompile>
</properties>
<modules>
<module>core/model</module>
<module>core/tools</module>
<module>core/tools-gwt</module>
<module>core/reader</module>
<module>core/engine-resources</module>
<module>core/engine-core</module>
<module>core/engine-html</module>
<module>extensions/legacy-plugins-model</module>
<module>extensions/legacy-plugins-engine-core</module>
</modules>
</profile>
</profiles>
<!-- ====================================================================== -->
<!-- P R O P E R T I E S -->
<!-- ====================================================================== -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>
<compile.source>1.6</compile.source>
<compile.target>1.6</compile.target>
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
<!-- used in launch4j exes -->
<launcher.copyright>(C) 2005-2011 e-UCM Research Group</launcher.copyright>
<launcher.minJvmVersion>1.6.0</launcher.minJvmVersion>
<launcher.maxJvmVersion>1.6.0</launcher.maxJvmVersion>
<launcher.initialHeapSize>128</launcher.initialHeapSize>
<launcher.maxHeapSize>512</launcher.maxHeapSize>
<launcher.numericalVersion>2.0.1.0</launcher.numericalVersion>
<!-- libGDX version -->
<gdx.version>0.9.9</gdx.version>
</properties>
<!-- ====================================================================== -->
<!-- B U I L D -->
<!-- ====================================================================== -->
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.8</version>
<configuration>
<addGroupIdToProjectName>true</addGroupIdToProjectName>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
<!-- Java compilation options -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<!-- Dependency manipulation (copy, unpack) and analysis. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
<!-- Build a JAR of sources for use in IDEs and distribution to the repository. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<!-- Copy the resources to the output directory for including in the JAR. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.3</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<!-- Manage the licenses in the source files. -->
<plugin>
<inherited>false</inherited>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<configuration>
<header>${basedir}/etc/LICENSE.txt</header>
<strictCheck>true</strictCheck>
<failIfMissing>true</failIfMissing>
<aggregate>true</aggregate>
<excludes>
<exclude>*.*</exclude>
<exclude>**/.*</exclude>
<exclude>**/*.so</exclude>
<exclude>**/*.txt</exclude>
<exclude>**/*.xml</exclude>
<exclude>**/*.fnt</exclude>
<exclude>**/*.glsl</exclude>
<exclude>**/*.properties</exclude>
<exclude>**/resources/**</exclude>
<exclude>**/poly2tri/**</exclude>
<exclude>**/AStar.java</exclude>
<!-- ignore android-generated java files -->
<exclude>**/R.java</exclude>
<!-- ignore gwt base website and generated files -->
<exclude>core/engine-html/war/**</exclude>
<exclude>core/engine-html/gwt*/**</exclude>
</excludes>
<includes>
<!-- ignore /etc and other non-project directories -->
<include>core/**</include>
<include>build-tools/**</include>
<include>tests/**</include>
<include>extensions/**</include>
<include>guitools/**</include>
</includes>
</configuration>
<executions>
<execution>
<id>check-headers</id>
<phase>verify</phase>
<goals>
<goal>format</goal>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Java formatter -->
<plugin>
<groupId>com.googlecode.maven-java-formatter-plugin</groupId>
<artifactId>maven-java-formatter-plugin</artifactId>
<version>0.3.1</version>
<configuration>
<compilerCompliance>1.6</compilerCompliance>
<compilerSource>1.6</compilerSource>
<configFile>${project.parent.basedir}/etc/eclipse-formatter.xml</configFile>
<lineEnding>KEEP</lineEnding>
</configuration>
<executions>
<execution>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- ====================================================================== -->
<!-- Report plugins -->
<!-- ====================================================================== -->
<plugin>
<!-- Maven 3 reporting -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.0</version>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
<configuration>
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
</plugin>
<!-- aggregate reports -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.2</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
<!-- look for bugs in class-files; fairly deep -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
<version>2.0-beta-2</version>
</plugin>
<!-- complexity measures (ciclomatic&others) -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javancss-maven-plugin</artifactId>
<version>2.0</version>
</plugin>
<!-- look for bugs in class-files; fairly deep -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<xmlOutput>true</xmlOutput>
<xmlOutputDirectory>target/site</xmlOutputDirectory>
</configuration>
</plugin>
<!-- similar to findbugs; older, lots of rules -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.5</version>
<configuration>
<linkXref>true</linkXref>
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
<minimumTokens>30</minimumTokens>
<targetJdk>${compile.source}</targetJdk>
<aggregate>true</aggregate>
</configuration>
</plugin>
<!-- find style deviations <plugin> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId> <version>2.5</version> <dependencies>
<dependency> <groupId>ead</groupId> <artifactId>build-tools</artifactId>
<version>${project.version}</version> </dependency> </dependencies> </plugin> -->
<!-- Aggregate results from Checkstyle, Cobertura, Clover, Surefire,
PMD, CPD, FindBugs, Taglist reports. -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>dashboard-maven-plugin</artifactId>
<version>1.0.0-beta-1</version>
</plugin>
<!-- javadoc generation -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<configuration>
<source>${compile.source}</source>
<target>${compile.target}</target>
<links>
<link>http://java.sun.com/javase/6/docs/api/</link>
<link>http://junit.sourceforge.net/javadoc/</link>
</links>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>aggregate</report>
<report>test-aggregate</report>
<report>fix</report>
<report>test-fix</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<!-- find worrysome tags -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>2.4</version>
<configuration>
<tags>
<tag>TODO</tag>
<tag>FIXME</tag>
<tag>@todo</tag>
<tag>@deprecated</tag>
</tags>
</configuration>
</plugin>
<!-- run tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.8</version>
</plugin>
<!-- Currently Apache RAT maven plugin is in incubation phase and there
is no build in Apache Maven Plugins Snapshots Repository <plugin> <groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId> </plugin> -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>1.2</version>
<reportSets>
<reportSet>
<reports>
<report>dependency-updates-report</report>
<report>plugin-updates-report</report>
<report>property-updates-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<!-- Perform unit-test code-coverage analysis -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<check>
<haltOnFailure>false</haltOnFailure>
<regexes>
<regex>
<pattern>ead.*</pattern>
<branchRate>90</branchRate>
<lineRate>90</lineRate>
</regex>
</regexes>
</check>
<instrumentation>
<includes>
<include>ead/**/*.class</include>
</includes>
</instrumentation>
</configuration>
</plugin>
</reportPlugins>
</configuration>
</plugin>
</plugins>
<!-- Plugin Management contains plugin elements in much the same way, except
that rather than configuring plugin information for this particular project
build, it is intended to configure project builds that inherit from this
one. -->
<pluginManagement>
<plugins>
<!-- ====================================================================== -->
<!-- Plugin management -->
<!-- ====================================================================== -->
<!-- generate executables for shaded jars -->
<plugin>
<groupId>org.bluestemsoftware.open.maven.plugin</groupId>
<artifactId>launch4j-plugin</artifactId>
<version>1.5.0.0</version>
<configuration>
<headerType>gui</headerType>
<outfile>target/${project.artifactId}-${project.version}.exe</outfile>
<jar>target/${project.artifactId}-${project.version}-unified.jar</jar>
<errTitle>Error - ${project.name}</errTitle>
<icon>src/main/resources/winExe.ico</icon>
<jre>
<minVersion>${launcher.minJvmVersion}</minVersion>
<maxVersion>${launcher.maxJvmVersion}</maxVersion>
<initialHeapSize>${launcher.initialHeapSize}</initialHeapSize>
<maxHeapSize>${launcher.maxHeapSize}</maxHeapSize>
</jre>
<versionInfo>
<fileVersion>${launcher.numericalVersion}</fileVersion>
<txtFileVersion>${project.version}</txtFileVersion>
<fileDescription>
${project.description}
</fileDescription>
<copyright>
${launcher.copyright}
</copyright>
<productVersion>${launcher.numericalVersion}</productVersion>
<txtProductVersion>${project.version}</txtProductVersion>
<productName>${project.name}</productName>
<internalName>${project.name}</internalName>
<originalFilename>${project.artifactId}.exe</originalFilename>
</versionInfo>
</configuration>
</plugin>
<!-- Java compilation options -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<source>${compile.source}</source>
<target>${compile.target}</target>
<showDeprecation>true</showDeprecation>
<compilerArgument>
-Xlint:unchecked,deprecation,fallthrough,finally
</compilerArgument>
<fork>true</fork>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<!-- General execution options -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1.1</version>
</plugin>
<!-- Dependency manipulation (copy, unpack) and analysis -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.2</version>
</plugin>
<!-- Build a JAR of sources for use in IDEs and distribution to the repository -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<excludeResources>true</excludeResources>
<attach>true</attach>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.8.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.3.1</version>
</plugin>
<!-- build module jars -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<archive>
<manifest>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
<version>2.0-beta-2</version>
</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>
com.googlecode.maven-java-formatter-plugin
</groupId>
<artifactId>
maven-java-formatter-plugin
</artifactId>
<versionRange>
[0.3.1,)
</versionRange>
<goals>
<goal>format</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<!-- ====================================================================== -->
<!-- SOURCE CODE MANAGEMENT -->
<!-- ====================================================================== -->
<scm>
<connection>scm:git:git@github.com:e-ucm/eadventure.git</connection>
<developerConnection>scm:git:git@github.com:e-ucm/eadventure.git</developerConnection>
<url>git@github.com:e-ucm/eadventure.git</url>
</scm>
<!-- ====================================================================== -->
<!-- DISTRIBUTION MANAGEMENT -->
<!-- ====================================================================== -->
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<!-- ====================================================================== -->
<!-- R E P O S I T O R I E S -->
<!-- ====================================================================== -->
<repositories>
<repository>
<id>maven repo</id>
<name>maven repo</name>
<url>http://repo1.maven.org/maven2/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<!-- SNAPSHOTS from libGDX -->
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>caprica</id>
<name>Caprica Software</name>
<url>http://www.capricasoftware.co.uk/repo</url>
</repository>
<repository>
<id>project github maven repo</id>
<name>project github maven repo</name>
<url>https://github.com/e-ucm/eadventure/raw/master/etc/repository/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>apache-snapshots</id>
<name>Apache Snapshot Repository</name>
<url>http://repository.apache.org/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
<!-- Html2Image -->
<repository>
<id>yoava</id>
<name>AOL yoava</name>
<url>http://yoava.artifactoryonline.com/yoava/repo</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>apache-plugin-snapshot</id>
<name>Apache Snapshots Plugins</name>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<url>http://repository.apache.org/snapshots/</url>
</pluginRepository>
<pluginRepository>
<id>snapshots-codehaus-maven2</id>
<name>Codehaus Snapshots Pluginso</name>
<url>http://snapshots.repository.codehaus.org</url>
<layout>default</layout>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>mc-release</id>
<name>Local Maven repository of releases</name>
<url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</pluginRepository>
</pluginRepositories>
<!-- ====================================================================== -->
<!-- D E P E N D E N C I E S -->
<!-- ====================================================================== -->
<dependencies>
<!-- All projects should declare a dependency on <dependency> <groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId> </dependency> (or slf4j-android; which
includes slf4j inside). Subprojects can choose their own implementations;
they will not conflict or propagate as long as they use the <optional>true</optional>
element. Example (basic logging): <dependency> <groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId> <optional>true</optional> </dependency>
No implementation specified means no logs are generated -->
</dependencies>
<dependencyManagement>
<dependencies>
<!-- logging and variants -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-android</artifactId>
<version>1.6.1-RC1</version>
</dependency>
<!-- vlcj Video -->
<dependency>
<groupId>uk.co.caprica</groupId>
<artifactId>vlcj</artifactId>
<version>2.2.0</version>
</dependency>
<!-- JNA -->
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>3.4.0</version>
</dependency>
<!-- Google Guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>13.0</version>
</dependency>
<!-- Injection management -->
<!-- Patched version of guice, used by maven (in exporter). We use it for the rest of the project too, to avoid conflicts. -->
<dependency>
<groupId>org.sonatype.sisu</groupId>
<artifactId>sisu-guice</artifactId>
<version>3.1.6</version>
</dependency>
<!-- annotations for use with FindBugs -->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
<version>2.0.1</version>
</dependency>
<!-- testing libraries -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.9-RC1</version>
<scope>test</scope>
</dependency>
<!-- <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId>
<version>1.8.1</version> <scope>test</scope> </dependency> -->
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock-junit4</artifactId>
<version>2.5.1</version>
<scope>test</scope>
</dependency>
<!-- HTML to images (for imports) -->
<dependency>
<groupId>gui.ava</groupId>
<artifactId>html2image</artifactId>
<version>0.9</version>
</dependency>
<!-- GDX -->
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx</artifactId>
<version>${gdx.version}</version>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-backend-lwjgl</artifactId>
<version>${gdx.version}</version>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-backend-android</artifactId>
<version>${gdx.version}</version>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-backend-gwt</artifactId>
<version>${gdx.version}</version>
</dependency>
<dependency>
<groupId>aurelienribon</groupId>
<artifactId>tweenengine-api</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>aurelienribon</groupId>
<artifactId>tweenengine-api-sources</artifactId>
<version>1</version>
</dependency>
<!-- GLEANER -->
<dependency>
<groupId>es.e-ucm.gleaner</groupId>
<artifactId>gleaner-tracker</artifactId>
<version>0.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>es.e-ucm.gleaner</groupId>
<artifactId>gleaner-tracker-java</artifactId>
<version>0.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>es.e-ucm.gleaner</groupId>
<artifactId>gleaner-tracker-gwt</artifactId>
<version>0.2-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>
</dependencies>
</dependencyManagement>
</project>