Skip to content

Commit

Permalink
add missing deps for CI to build
Browse files Browse the repository at this point in the history
  • Loading branch information
SingingBush committed Jul 12, 2024
1 parent 2b21941 commit ad30f2d
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions barcode4j-saxon91/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,28 @@
<groupId>net.sf.saxon</groupId>
<artifactId>saxon9</artifactId>
<version>${saxon.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>saxon9-dom</artifactId>
<version>${saxon.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
<scope>provided</scope>
</dependency>

<!-- test dependencies -->
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
Expand Down Expand Up @@ -77,6 +91,22 @@
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<configuration>
<!-- Uses excluded licenses -->
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<!-- Uses excluded licenses -->
<skipAddThirdParty>true</skipAddThirdParty>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit ad30f2d

Please sign in to comment.