forked from camsys/OpenTripPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
994 lines (964 loc) · 32.8 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
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
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
<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>
<name>OpenTripPlanner</name>
<description>The OpenTripPlanner multimodal journey planning system</description>
<url>http://opentripplanner.org</url>
<groupId>org.opentripplanner</groupId>
<artifactId>otp</artifactId>
<version>1.3.0.86-SNAPSHOT</version>
<packaging>jar</packaging>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
</license>
</licenses>
<!-- Developer entries are provided only for Steering Committee members.
For other contributors, see https://github.com/opentripplanner/OpenTripPlanner/graphs/contributors -->
<developers>
<developer>
<name>Andrew Byrd</name>
<email>[email protected]</email>
<organization>Conveyal</organization>
<organizationUrl>http://conveyal.com/</organizationUrl>
</developer>
<developer>
<name>David Emory</name>
<email>[email protected]</email>
<organization>Conveyal</organization>
<organizationUrl>http://conveyal.com/</organizationUrl>
</developer>
<developer>
<name>Matt Conway</name>
<email>[email protected]</email>
<organization>Conveyal</organization>
<organizationUrl>http://conveyal.com/</organizationUrl>
</developer>
<developer>
<name>David Novalis Turner</name>
<email>[email protected]</email>
<organization>Ex-OpenPlans</organization>
<organizationUrl>http://openplans.org/</organizationUrl>
</developer>
<developer>
<name>Laurent Grégoire</name>
<email>[email protected]</email>
<organization>Mecatran</organization>
<organizationUrl>http://www.mecatran.com/</organizationUrl>
</developer>
<developer>
<name>Frank Purcell</name>
<email>[email protected]</email>
<organization>Portland TriMet</organization>
<organizationUrl>https://trimet.org/</organizationUrl>
</developer>
<developer>
<name>Tuukka Hastrup</name>
<email>[email protected]</email>
<organization>Helsingin Seudun Liikenne</organization>
<organizationUrl>https://www.hsl.fi/</organizationUrl>
</developer>
<developer>
<name>Jasper Hartong</name>
<email>[email protected]</email>
<organization>Calendar42</organization>
<organizationUrl>http://site.calendar42.com/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:http://github.com/camsys/OpenTripPlanner.git</connection>
<developerConnection>scm:git:ssh://[email protected]/camsys/OpenTripPlanner.git</developerConnection>
<url>http://github.com/camsys/OpenTripPlanner</url>
<tag>otp-1.3.0.72</tag>
</scm>
<properties>
<gtfs_modules_version>1.3.102</gtfs_modules_version>
<aws.version>1.11.602</aws.version>
<geotools.version>22.4</geotools.version>
<geotools.wfs.version>16.5</geotools.wfs.version>
<jts.version>1.16.0</jts.version>
<jackson.version>2.9.9</jackson.version>
<jersey.version>2.18</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<site_id>developer.onebusaway.org</site_id>
<site_deployment_base>scp://developer.onebusaway.org/var/www/sites/developer/modules</site_deployment_base>
<site_url>${site_deployment_base}/${project.name}/${project.version}</site_url>
</properties>
<distributionManagement>
<repository>
<id>releases-camsys-public-repo</id>
<name>Camsys Public Release Repo</name>
<url>s3://repo.camsys-apps.com/releases/</url>
</repository>
<snapshotRepository>
<id>snapshots-camsys-public-repo</id>
<name>Camsys Public Snapshot Repo</name>
<url>s3://repo.camsys-apps.com/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build>
<!-- Filtering will perform substitution on maven-version.properties, see
git commit id plugin below. -->
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<!-- shell scripts to start up OTP, need to be filtered to get JAR file
name -->
<directory>src/scripts</directory>
<filtering>true</filtering>
<!-- Copy the scripts up into the root of the repo, not /target/classes -->
<targetPath>../..</targetPath>
</resource>
<resource>
<directory>src/client</directory>
<targetPath>client</targetPath>
<filtering>false</filtering>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
<testResource>
<!-- Shell scripts to start up OTP, need to be filtered to insert the
JAR file name. -->
<!-- These are treated as testResources rather than resources to keep
them out of the JAR. -->
<!-- The staging repo will reject a JAR containing them as they use traversal
paths (../..). -->
<directory>src/scripts</directory>
<filtering>true</filtering>
<!-- Copy the scripts up into the root of the repo, not /target/classes -->
<targetPath>../..</targetPath>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.1.0</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>test</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<excludes>
<exclude>**/mta/comparison/*.java</exclude>
<exclude>**/mta/comparison/**/*.java</exclude>
</excludes>
<!-- we have to fork the JVM during tests so that the argLine is passed
along -->
<forkCount>3</forkCount>
<!-- enable the restricted reflection under Java 11 so that the ObjectDiffer
works -->
<argLine>
-Xmx4G
-Dfile.encoding=UTF-8
--illegal-access=permit
--add-opens java.base/java.lang.module=ALL-UNNAMED
--add-opens
java.base/jdk.internal.reflect=ALL-UNNAMED
--add-opens
java.base/jdk.internal.misc=ALL-UNNAMED
--add-opens
java.base/jdk.internal.loader=ALL-UNNAMED
--add-opens
java.base/jdk.internal.ref=ALL-UNNAMED
--add-opens
java.base/jdk.internal.util=ALL-UNNAMED
--add-opens
java.base/jdk.internal.util.jar=ALL-UNNAMED
--add-opens
java.base/jdk.internal.module=ALL-UNNAMED
--add-opens
java.base/java.lang=ALL-UNNAMED
</argLine>
<!-- Jenkins needs XML test reports to determine whether the build
is stable. -->
<disableXmlReport>false</disableXmlReport>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration>
<disableXmlReport>false</disableXmlReport>
<argLine>-Xmx28g -Xms4g -Dfile.encoding=UTF-8
--illegal-access=permit</argLine>
</configuration>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.1.0</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>integration-test</id>
<phase>integration-test</phase>
</execution>
</executions>
</plugin>
<plugin>
<!-- Get current Git commit information for use in MavenVersion class.
Commit information is stored in Maven variables, which are then substituted
into the properties file. The plugin has a mode to generate a git.properties
file, but we need the Maven project version as well, so we perform substitution. -->
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>4.0.4</version>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<verbose>false</verbose>
<dotGitDirectory>${project.basedir}.git</dotGitDirectory>
<failOnNoGitDirectory>false</failOnNoGitDirectory>
<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
</configuration>
</plugin>
<!-- There used to be a dependency-plugin:copy-dependencies plugin entry
here, but the shade-plugin will explode the dependencies even if they aren't
manually copied in. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<!-- We want to create a standalone jar that can be run on the command
line. Java does not really allow this - you cannot place jars inside of jars.
You must either provide all the dependency jars to the user (usually lib/
under the directory containing the runnable jar) or explode all the jars
and repackage them into a single jar. The problem is that while class files
are nicely organized into the package namespace and should not collide, the
META-INF directories of the jars will collide. Maven's standard assembly
plugin does not account for this and will just clobber metadata. This then
causes runtime errors, particularly with Spring. Instead, we use the shade
plugin which has transformers that will for example append files of the same
name rather than overwrite them in the combined JAR. NB: Don't use a version
of the shade plugin older than 1.3.2, as it fixed MSHADE-76 (files not merged
properly if some input files are missing a terminating newline) -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<!-- exclude signatures from merged JAR to avoid invalid signature
messages -->
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<!-- The shaded JAR will not be the main artifact for the project,
it will be attached for deployment in the way source and docs are. -->
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>shaded</shadedClassifierName>
<!-- MinimizeJar removes unused classes, (classes not imported explicitly
by name). We have eliminated most Jersey auto-scanning, but there is still
some need for include filters to force-include classes that are dynamically
loaded by name/auto-scanned. -->
<!-- This roughly halves the size of the OTP JAR, bringing it down
to around 20 MB. <minimizeJar>true</minimizeJar> <filters> <filter> <artifact>com.sun.jersey:*</artifact>
<includes> <include>**</include> </includes> </filter> <filter> <artifact>org.opentripplanner:*</artifact>
<includes> <include>**</include> </includes> </filter> </filters> -->
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<manifestEntries>
<Main-Class>org.opentripplanner.standalone.OTPMain</Main-Class>
<!-- The ImageIO lines allow some image reader plugins to work
https://stackoverflow.com/questions/7051603/jai-vendorname-null#18495658 -->
<Specification-Title>Java Advanced Imaging Image I/O Tools</Specification-Title>
<Specification-Version>1.1</Specification-Version>
<Specification-Vendor>Sun Microsystems, Inc.</Specification-Vendor>
<Implementation-Title>com.sun.media.imageio</Implementation-Title>
<Implementation-Version>1.1</Implementation-Version>
<Implementation-Vendor>Sun Microsystems, Inc.</Implementation-Vendor>
<Extension-Name>com.sun.media.imageio</Extension-Name>
</manifestEntries>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<useReleaseProfile>false</useReleaseProfile>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>server</id>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>org.opentripplanner.standalone.OTPMain</mainClass>
<jvmArgs>-Duser.timezone=America/New_York --illegal-access=permit </jvmArgs>
<commandlineArgs>--router default --server --verbose --clientFiles /var/otp/mta-ui --clientPath / --disableNativeClient --clientFallback</commandlineArgs>
</configuration>
</execution>
<execution>
<id>bundle</id>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>org.opentripplanner.standalone.OTPMain</mainClass>
<jvmArgs>-Duser.timezone=America/New_York --illegal-access=permit </jvmArgs>
<commandlineArgs>--build /var/otp/graphs/default --verbose </commandlineArgs>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<!-- In Maven 3, ssh wagon is no longer enabled by default. Since many
of our internal deployments use ssh, we enable it here -->
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>3.0.0</version>
</extension>
<extension>
<groupId>com.allogy.maven.wagon</groupId>
<artifactId>maven-s3-wagon</artifactId>
<version>1.2.0</version>
</extension>
</extensions>
</build>
<reporting>
<!-- Reporting plugin versions cannot be managed with entries in <build><plugins><pluginmanagement>
but would need a separate <reporting><plugins><pluginmanagement> section. -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.7</version>
<reportSets>
<reportSet>
<reports>
<!-- empty: disable project-info reports -->
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<!-- This plugin must be configured both here (for site generation) and
in "build" (for attach-javadoc during release), preferably with identical
version numbers. -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<configuration>
<!-- Turn off Java 8 strict Javadoc checking -->
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<reportSets>
<reportSet>
<reports>
<!-- enable only aggregate-level javadoc generation -->
<report>aggregate</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<repositories>
<!-- Hack to force maven to check central first. Maven central is inherited
from the superpom, but ends up at the end of the list. Though most of the
time the artifact is in central, Maven tries to download from every other
repository and fails before checking central. Do not change the id from central2
to central, otherwise the entry will be ignored. -->
<repository>
<id>central2</id>
<name>check central first to avoid a lot of not found warnings</name>
<url>https://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>download.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
</repository>
<repository>
<id>osgeo-repo</id>
<name>Open Source Geospatial Foundation Repository</name>
<url>https://repo.osgeo.org/repository/release/</url>
</repository>
<repository>
<id>axis</id>
<name>axis</name>
<url>https://people.apache.org/repo/m1-ibiblio-rsync-repository/org.apache.axis2/</url>
</repository>
<repository>
<id>repo.camsys-apps.com</id>
<url>https://repo.camsys-apps.com/third-party/</url>
</repository>
<repository>
<id>releases-camsys-public-repo</id>
<url>https://repo.camsys-apps.com/releases/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>snapshots-camsys-public-repo</id>
<url>https://repo.camsys-apps.com/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<!-- Kryo serialization, used to save graphs to disk. -->
<dependency>
<groupId>com.esotericsoftware</groupId>
<artifactId>kryo</artifactId>
<version>4.0.2</version>
</dependency>
<!-- Extra serializers for Kryo -->
<dependency>
<groupId>de.javakaffee</groupId>
<artifactId>kryo-serializers</artifactId>
<version>0.42</version>
</dependency>
<!-- Logging library, implements slf4j logging API -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.13</version>
</dependency>
<!-- Jersey uses java.util logging, redirect it to slf4j API (we use the
Logback implementation) -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>1.7.6</version>
</dependency>
<!-- AWS SDK uses Java commons logging. Redirect it to the slf4j API (we
use the Logback implementation) -->
<!-- Why does this work? It seems like we'd need to declare JCL "provided"
to avoid using the true JCL. -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>1.7.6</version>
</dependency>
<!-- Guava provides improved collections, among other things. -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
<!-- Trove provides optimized map/set collections for native types (int,
long...) -->
<dependency>
<groupId>net.sf.trove4j</groupId>
<artifactId>trove4j</artifactId>
<version>3.0.3</version>
</dependency>
<!-- GEOTOOLS AND JTS TOPOLOGY: geometry, rasters and projections. -->
<!-- GEOTOOLS includes JTS as a transitive dependency. -->
<dependency>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
<version>${jts.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-geojson</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-referencing</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.12.4</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-main</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-coverage</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-arcgrid</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-shapefile</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-geotiff</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-opengis</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-wfs</artifactId>
<version>${geotools.wfs.version}</version>
</dependency>
<!-- provides EPSG database for projections (shapefile loading) -->
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-epsg-hsql</artifactId>
<version>${geotools.version}</version>
</dependency>
<!-- TODO: this should be replaced by Jackson serialization -->
<dependency>
<groupId>de.grundid.opendatalab</groupId>
<artifactId>geojson-jackson</artifactId>
<version>1.2</version>
<!-- We explicitely exclude jackson-core/databind as we use a more recent
version than the one geojson-jackson depends on, and the two seems to be
somehow incompatible. -->
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.conveyal</groupId>
<artifactId>jackson2-geojson</artifactId>
<version>0.8</version>
<exclusions>
<exclusion>
<groupId>com.vividsolutions</groupId>
<artifactId>jts</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- TESTING -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.10.19</version>
<scope>test</scope>
</dependency>
<!-- Jersey annontation-driven REST web services (JAX-RS implementation) -->
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-server</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-multipart</artifactId>
<version>${jersey.version}</version>
</dependency>
<!-- Deploy Jersey apps in stand-alone Grizzly server instead of a servlet
container. -->
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-grizzly2-http</artifactId>
<version>${jersey.version}</version>
</dependency>
<!-- Jackson modules. -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- TODO - temporary security vulnerability - this should be jackson.version
on next upgrade -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.9.2</version>
</dependency>
<!-- Jackson modules to serialize Jersey response objects to JSON. -->
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>${jackson.version}</version>
<exclusions>
<!-- jackson 2.9.9 includes reference to woodstox-core 5.1.0 which requires
stax2-api:4.1 which is binary imcompatible stax2-api:3.1.4 -->
<exclusion>
<artifactId>com.fasterxml.woodstox</artifactId>
<groupId>woodstox-core</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fasterxml.woodstox</groupId>
<artifactId>woodstox-core</artifactId>
<version>5.0.3</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-jaxb-annotations</artifactId>
<version>${jackson.version}</version>
<exclusions>
<!-- jackson 2.9.9 includes reference to woodstox-core 5.1.0 which requires
stax2-api:4.1 which is binary imcompatible stax2-api:3.1.4 -->
<exclusion>
<artifactId>com.fasterxml.woodstox</artifactId>
<groupId>woodstox-core</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-xml-provider</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- Asynchronous Websocket-capable client, for message-driven incremental
GTFS-RT -->
<!-- AsyncHttpClient Websockets need a newer version of Grizzly than Jersey
does. -->
<dependency>
<groupId>com.ning</groupId>
<artifactId>async-http-client</artifactId>
<version>1.8.12</version>
</dependency>
<!-- OTHER DEPENDENCIES -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope> <!-- this dependency is provided by the servlet container -->
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
<!-- OBA GTFS loader -->
<dependency>
<groupId>org.onebusaway</groupId>
<artifactId>onebusaway-gtfs</artifactId>
<version>${gtfs_modules_version}</version>
</dependency>
<!-- GTFS-RT classes (with extensions) - from OBA -->
<dependency>
<groupId>org.onebusaway</groupId>
<artifactId>onebusaway-gtfs-realtime-api</artifactId>
<version>1.2.26</version>
</dependency>
<!-- Processing is used for the debug GUI (though we could probably use
just Java2D) -->
<dependency>
<groupId>org.processing</groupId>
<artifactId>core</artifactId>
<version>1.0.7</version>
</dependency>
<!-- Joda Time is a widely used replacement for flaky Java time classes. -->
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.1</version>
</dependency>
<!-- PNGJ is used for making Analyst TimeGrids -->
<dependency>
<groupId>ar.com.hjg</groupId>
<artifactId>pngj</artifactId>
<version>2.0.1</version>
</dependency>
<!-- FlexJSON deserializes JSON in Nominatim/Yahoo/Google geocoder modules. -->
<!-- Could be done with Jackson JSON trees. -->
<dependency>
<groupId>net.sf.flexjson</groupId>
<artifactId>flexjson</artifactId>
<version>2.0</version>
</dependency>
<!-- Apache Axis: Used in NEDDownloader to fetch elevation tiles. -->
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis</artifactId>
<version>1.4</version>
</dependency>
<!-- Apache Axis: Used in NEDDownloader to fetch elevation tiles. -->
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis-jaxrpc</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.18</version>
</dependency>
<dependency>
<groupId>commons-discovery</groupId>
<artifactId>commons-discovery</artifactId>
<version>0.4</version>
</dependency>
<!-- Used in DegreeGridNEDTileSource to fetch tiles from Amazon S3 -->
<dependency>
<groupId>net.java.dev.jets3t</groupId>
<artifactId>jets3t</artifactId>
<version>0.8.1</version>
</dependency>
<!-- OpenStreetMap protobuf (PBF) definitions -->
<dependency>
<groupId>org.openstreetmap.pbf</groupId>
<artifactId>osmpbf</artifactId>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.12</version>
</dependency>
<!-- Command line parameter parsing -->
<dependency>
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
<version>1.30</version>
</dependency>
<!-- CSV parser -->
<dependency>
<groupId>net.sourceforge.javacsv</groupId>
<artifactId>javacsv</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.9</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.11</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.6.1</version>
</dependency>
<!-- Lucene for sophisticated text search -->
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>4.7.1</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queries</artifactId>
<version>4.7.1</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers-common</artifactId>
<version>4.7.1</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queryparser</artifactId>
<version>4.7.1</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-mqtt</artifactId>
<version>5.16.2</version>
</dependency>
<dependency>
<groupId>com.graphql-java</groupId>
<artifactId>graphql-java</artifactId>
<version>16.0</version>
</dependency>
<dependency>
<groupId>com.graphql-java</groupId>
<artifactId>graphql-java-extended-scalars</artifactId>
<version>16.0.1</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
<version>1.11.916</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>1.11.916</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-sts</artifactId>
<version>1.11.916</version>
</dependency>
<!-- Support for OTP scripting -->
<dependency>
<groupId>bsf</groupId>
<artifactId>bsf</artifactId>
<version>2.4.0</version>
</dependency>
<!-- Scripting language dependencies such as Groovy and Jython can double
the size of the OTP JAR. Therefore we don't include them by default. You
can either update the POM in your fork to include the scripting dependencies,
or simply download them and add them to the classpath on the command line.
<dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId>
<version>2.3.8</version> </dependency> <dependency> <groupId>org.python</groupId>
<artifactId>jython</artifactId> <version>2.7.0</version> </dependency> -->
<!-- support for OpenTraffic data -->
<dependency>
<groupId>io.opentraffic</groupId>
<artifactId>traffic-engine</artifactId>
<version>0.2</version>
<exclusions>
<exclusion>
<groupId>com.vividsolutions</groupId>
<artifactId>jts</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- OTP 2.0 will adopt routing methods based on those in R5. This also
contains a serialization test framework. -->
<dependency>
<groupId>com.conveyal</groupId>
<artifactId>r5</artifactId>
<version>4.8.1</version>
<exclusions>
<exclusion>
<artifactId>slf4j-simple</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
<exclusion>
<artifactId>aws-java-sdk-s3</artifactId>
<groupId>com.amazonaws</groupId>
</exclusion>
<exclusion>
<groupId>com.vividsolutions</groupId>
<artifactId>jts</artifactId>
</exclusion>
<exclusion>
<groupId>com.conveyal</groupId>
<artifactId>gtfs-lib</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- https://mvnrepository.com/artifact/com.conveyal/kryo-tools -->
<dependency>
<groupId>com.conveyal</groupId>
<artifactId>kryo-tools</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>com.conveyal</groupId>
<artifactId>gtfs-lib</artifactId>
<version>3.0.11</version>
</dependency>
<dependency>
<groupId>com.webcohesion.enunciate</groupId>
<artifactId>enunciate-core</artifactId>
<version>2.8.0</version>
</dependency>
</dependencies>
</project>