Skip to content

Commit

Permalink
Bump maven-jar-plugin (#720)
Browse files Browse the repository at this point in the history
* Bump maven-jar-plugin

* Update pull-request-pipeline.yml

Add Java 17 executions
  • Loading branch information
dotasek authored Aug 3, 2023
1 parent 81777e6 commit 9d5a2b1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
10 changes: 8 additions & 2 deletions org.hl7.fhir.publisher.cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,13 @@
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<excludes>META-INF/*.SF,META-INF/*.DSA,META-INF/*.RSA</excludes>
<!-- exclude the following:
Signature files that will be flagged as inconsistent:
META-INF/*.SF,META-INF/*.DSA,META-INF/*.RSA
A module-info from org.graalvm.truffle (imported by org.graalvm.js) that is compiled for Java 17
META-INF/versions/17/module-info.class
-->
<excludes>META-INF/*.SF,META-INF/*.DSA,META-INF/*.RSA,META-INF/versions/17/module-info.class</excludes>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
Expand Down Expand Up @@ -109,7 +115,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<version>3.2.2</version>
<configuration>
<archive>
<manifest>
Expand Down
8 changes: 8 additions & 0 deletions pull-request-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,18 @@ jobs:
vmImage: ubuntu-latest
jdkVersion: 1.11
gitRepo: https://github.com/FHIR/fhir-tools-ig.git
- igName: fhir-tools-ig-exec
vmImage: ubuntu-latest
jdkVersion: 1.17
gitRepo: https://github.com/FHIR/fhir-tools-ig.git
- igName: fhir-tools-ig-exec
vmImage: windows-latest
jdkVersion: 1.11
gitRepo: https://github.com/FHIR/fhir-tools-ig.git
- igName: fhir-tools-ig-exec
vmImage: windows-latest
jdkVersion: 1.17
gitRepo: https://github.com/FHIR/fhir-tools-ig.git
- igName: fhir-tools-ig-exec
vmImage: macos-latest
jdkVersion: 1.11
Expand Down

0 comments on commit 9d5a2b1

Please sign in to comment.