Skip to content

Commit

Permalink
fix(jaxb): use jaxb-runtime dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
nsenave committed Oct 9, 2024
1 parent 0673abc commit 3868f65
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Tag verification
id: check-tag
run: |
if ! [[ "${{ steps.version.outputs.version }}" =~ ^2.[0-9]+.[0-9]+-SNAPSHOT$ ]]; then
if ! [[ "${{ steps.version.outputs.version }}" =~ ^2.[0-9]+.[0-9]+-SNAPSHOT.?[0-9]*$ ]]; then
echo "Version on v2-main ${{ steps.version.outputs.version }} branch does not match the format 2.Y.Z-SNAPSHOT"
exit 1
fi
Expand Down
16 changes: 5 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>fr.insee.eno</groupId>
<artifactId>eno-core</artifactId>
<version>2.10.1</version>
<version>2.10.2-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Eno – Questionnaire generator</name>
Expand Down Expand Up @@ -107,8 +107,7 @@
<saxon.version>12.5</saxon.version>
<eclipse.version>2.7.15</eclipse.version>
<jaxb-api.version>2.3.1</jaxb-api.version>
<jaxb.core.version>4.0.5</jaxb.core.version>
<jaxb.impl.version>4.0.5</jaxb.impl.version>
<jaxb-runtime.version>4.0.5</jaxb-runtime.version>
<fop.version>2.9</fop.version>
<commons-io.version>2.17.0</commons-io.version>
<guice.version>7.0.0</guice.version>
Expand Down Expand Up @@ -168,14 +167,9 @@
<version>${jaxb-api.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>${jaxb.core.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>${jaxb.impl.version}</version>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${jaxb-runtime.version}</version>
</dependency>

<!-- PDF dependency -->
Expand Down

0 comments on commit 3868f65

Please sign in to comment.