Skip to content

Commit 3375950

Browse files
committed
Move files to expected location
1 parent d5fdb9c commit 3375950

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ COPY core ./core
2222
COPY publish ./publish
2323
COPY examples ./examples
2424
COPY docs ./docs
25-
COPY m2 /root/.m2
25+
COPY m2 /root/.m2/
2626

2727
ARG GIT_HEAD
2828
ENV GIT_HEAD=${GIT_HEAD}
2929

3030
# Exclude the tasks that will run out of the docker build (in a docker run)
3131
RUN --mount=type=cache,target=/home/gradle/.gradle \
32-
gradle --parallel --exclude-task=:core:test \
32+
gradle --parallel \
3333
--exclude-task=:core:spotbugsMain --exclude-task=:core:checkstyleMain \
3434
--exclude-task=:core:spotbugsTest --exclude-task=:core:checkstyleTest --exclude-task=:core:testCLI \
3535
:core:build :core:explodedWar :publish:build :examples:build :docs:buildDocs
@@ -46,6 +46,5 @@ RUN mv /home/gradle/.gradle-backup /home/gradle/.gradle
4646
# Be able to use the container with a different user
4747
ENV GRADLE_USER_HOME=/home/gradle/
4848
RUN chmod -R go+rw /home/gradle/
49-
RUN chmod -R go+rw /root/.m2/
5049

5150
COPY checkstyle_* ./

core/build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -163,14 +163,14 @@ dependencies {
163163
"io.dropwizard.metrics:metrics-logback:4.2.19",
164164
)
165165
geotools(
166-
"org.geotools:gt-epsg-hsql:29.2",
167-
"org.geotools:gt-render:29.2",
168-
"org.geotools:gt-geojson:29.2",
169-
"org.geotools:gt-geotiff:29.2",
170-
"org.geotools:gt-wms:29.2",
171-
"org.geotools.xsd:gt-xsd-gml3:29.2",
172-
"org.geotools:gt-svg:29.2",
173-
"org.geotools:gt-cql:29.2"
166+
"org.geotools:gt-epsg-hsql:30-SNAPSHOT",
167+
"org.geotools:gt-render:30-SNAPSHOT",
168+
"org.geotools:gt-geojson:30-SNAPSHOT",
169+
"org.geotools:gt-geotiff:30-SNAPSHOT",
170+
"org.geotools:gt-wms:30-SNAPSHOT",
171+
"org.geotools.xsd:gt-xsd-gml3:30-SNAPSHOT",
172+
"org.geotools:gt-svg:30-SNAPSHOT",
173+
"org.geotools:gt-cql:30-SNAPSHOT"
174174
)
175175
jasper(
176176
"net.sf.jasperreports:jasperreports:6.20.5",

0 commit comments

Comments
 (0)