Skip to content

Commit

Permalink
upgrade dependancies to fix vulnerabilities and added 2.2 base
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioG70 committed Apr 19, 2024
1 parent 4acad0e commit 42cbc01
Show file tree
Hide file tree
Showing 22 changed files with 2,667 additions and 17 deletions.
2 changes: 1 addition & 1 deletion dbptk-bindings/dbptk-bindings-siard1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>4.0.1</version>
<version>4.0.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion dbptk-bindings/dbptk-bindings-siard2-0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>4.0.1</version>
<version>4.0.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion dbptk-bindings/dbptk-bindings-siard2-1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>4.0.1</version>
<version>4.0.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
75 changes: 75 additions & 0 deletions dbptk-bindings/dbptk-bindings-siard2-2/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<?xml version="1.0"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<name>dbptk-bindings-siard2-2</name>
<dependencies>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>4.0.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
<groupId>com.databasepreservation</groupId>
<artifactId>dbptk-bindings-siard2-2</artifactId>
<version>2.2.0</version>
<parent>
<groupId>com.databasepreservation</groupId>
<artifactId>dbptk-bindings</artifactId>
<version>1.5.1</version>
<relativePath>..</relativePath>
</parent>
<properties>
<packagename>siard_2_2</packagename>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
<configuration>
<source>${version.java}</source>
<target>${version.java}</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.jvnet.jaxb</groupId>
<artifactId>jaxb-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<executions>
<!--
<execution>
<id>default-install-project-repository-siard</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file>${project.build.directory}/${project.artifactId}-${project.version}.jar</file>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<localRepositoryPath>${projectLocalRepository}</localRepositoryPath>
<packaging>jar</packaging>
</configuration>
</execution>
-->
</executions>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<jaxb:bindings xmlns:jaxb="https://jakarta.ee/xml/ns/jaxb"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
version="3.0">
<jaxb:globalBindings>
<!-- use JODA-Time DateTime for xs:date -->
<jaxb:javaType name="java.lang.String" xmlType="xs:date"
parseMethod="java.lang.String.valueOf"
printMethod="java.lang.String.valueOf"/>
</jaxb:globalBindings>
</jaxb:bindings>
Loading

0 comments on commit 42cbc01

Please sign in to comment.