Skip to content

Commit db5699e

Browse files
committed
Merge branch 'ors_3.0-upgrade' into ors_4.0
2 parents 142b9ad + f0857c6 commit db5699e

File tree

115 files changed

+7988
-167
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+7988
-167
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ android/libs/graphhopper-*-android.jar
2727
!/core/src/test/resources/com/graphhopper/reader/osm/*.pbf
2828
*.dem
2929
*.log
30+
core/TODO*.txt
31+
core/files/dem*
3032
/logs
3133
srtmprovider/
3234
cgiarprovider/

PULL_REQUEST_TEMPLATE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- [ ] I have clearly marked my changes with comments '// ORS-GH MOD START' and '// ORS-GH MOD END'
2+
- [ ] I have written a short in-line comment for code changes explaining why the change is required
3+
- [ ] I have tested the latest version of **openrouteservice** `development` branch against the .jar build of this PR
4+
- [ ] I have adjusted failing tests in **openrouteservice** API tests

core/pom.xml

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,19 @@
7070
<groupId>com.fasterxml.jackson.dataformat</groupId>
7171
<artifactId>jackson-dataformat-xml</artifactId>
7272
</dependency>
73+
<dependency>
74+
<groupId>ch.poole</groupId>
75+
<artifactId>ConditionalRestrictionParser</artifactId>
76+
<!-- TODO ORS: where is this defined? <version>${crparser.version}</version> -->
77+
<version>0.3.1</version>
78+
</dependency>
79+
<dependency>
80+
<groupId>ch.poole</groupId>
81+
<artifactId>OpeningHoursParser</artifactId>
82+
<!-- TODO ORS: where is this defined? <version>${ohparser.version}</version> -->
83+
<version>0.25.0</version>
84+
</dependency>
85+
7386
<!-- for using CGIAR: elevation data importing via tif files-->
7487
<dependency>
7588
<groupId>org.apache.xmlgraphics</groupId>
@@ -101,6 +114,18 @@
101114
<artifactId>log4j</artifactId>
102115
<scope>test</scope>
103116
</dependency>
117+
<dependency>
118+
<groupId>com.graphhopper</groupId>
119+
<artifactId>graphhopper-api</artifactId>
120+
<version>${project.parent.version}</version>
121+
<scope>compile</scope>
122+
</dependency>
123+
<dependency>
124+
<groupId>us.dustinj.timezonemap</groupId>
125+
<artifactId>timezonemap</artifactId>
126+
<version>3.2</version>
127+
</dependency>
128+
104129
</dependencies>
105130

106131
<build>
@@ -146,6 +171,14 @@
146171
<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
147172
</configuration>
148173
</plugin>
174+
<plugin>
175+
<groupId>org.apache.maven.plugins</groupId>
176+
<artifactId>maven-compiler-plugin</artifactId>
177+
<configuration>
178+
<source>8</source>
179+
<target>8</target>
180+
</configuration>
181+
</plugin>
149182
</plugins>
150183

151184
<!-- make version available at runtime via version file -->
@@ -170,4 +203,4 @@
170203
</resource>
171204
</resources>
172205
</build>
173-
</project>
206+
</project>

0 commit comments

Comments
 (0)