Skip to content

Commit

Permalink
Move files to expected location
Browse files Browse the repository at this point in the history
  • Loading branch information
sebr72 committed Aug 28, 2023
1 parent d5fdb9c commit 3375950
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ COPY core ./core
COPY publish ./publish
COPY examples ./examples
COPY docs ./docs
COPY m2 /root/.m2
COPY m2 /root/.m2/

ARG GIT_HEAD
ENV GIT_HEAD=${GIT_HEAD}

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

COPY checkstyle_* ./
16 changes: 8 additions & 8 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -163,14 +163,14 @@ dependencies {
"io.dropwizard.metrics:metrics-logback:4.2.19",
)
geotools(
"org.geotools:gt-epsg-hsql:29.2",
"org.geotools:gt-render:29.2",
"org.geotools:gt-geojson:29.2",
"org.geotools:gt-geotiff:29.2",
"org.geotools:gt-wms:29.2",
"org.geotools.xsd:gt-xsd-gml3:29.2",
"org.geotools:gt-svg:29.2",
"org.geotools:gt-cql:29.2"
"org.geotools:gt-epsg-hsql:30-SNAPSHOT",
"org.geotools:gt-render:30-SNAPSHOT",
"org.geotools:gt-geojson:30-SNAPSHOT",
"org.geotools:gt-geotiff:30-SNAPSHOT",
"org.geotools:gt-wms:30-SNAPSHOT",
"org.geotools.xsd:gt-xsd-gml3:30-SNAPSHOT",
"org.geotools:gt-svg:30-SNAPSHOT",
"org.geotools:gt-cql:30-SNAPSHOT"
)
jasper(
"net.sf.jasperreports:jasperreports:6.20.5",
Expand Down

0 comments on commit 3375950

Please sign in to comment.