Skip to content

Commit

Permalink
Merge pull request #223 from mundialis/fix-tests
Browse files Browse the repository at this point in the history
Fix tests
  • Loading branch information
hwbllmnn authored Dec 8, 2023
2 parents da9a891 + b30c1b8 commit 66de28f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
]'

- name: Build the datastore with Maven and publish artifacts to nexus 🏗️+🚀
run: mvn -B install -DskipTests && mvn -B deploy
run: mvn -B deploy -DskipTests

- name: Analyse code and publish to SonarQube 📊
run: mvn -B -Dsonar.password=${{ secrets.SONAR_PASSWORD }} sonar:sonar
2 changes: 1 addition & 1 deletion .github/workflows/on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
]'

- name: Clean and build project 🧽 + 🏗️
run: mvn -B install -DskipTests && mvn -B install
run: mvn -B install

- name: Build documentation 📖
run: mvn -B -P reporting surefire-report:report site
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@
<dependency>
<groupId>de.terrestris</groupId>
<artifactId>terrestris-utils</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public static void init() throws IOException {
IOUtils.copy(url, file);
IOUtils.copy(new URL("https://repo1.maven.org/maven2/org/gdal/gdal/3.4.0/gdal-3.4.0.jar"), new File("target/gdal.jar"));
File target = new File("target");
ZipUtils.zip(new File(target, "grass.jar"), new File("target/classes"), true);
ZipUtils.unzip(file, target);
file.delete();
geoserver.start();
Expand Down

0 comments on commit 66de28f

Please sign in to comment.