-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade dependancies to fix vulnerabilities and added 2.2 base
- Loading branch information
1 parent
4acad0e
commit 42cbc01
Showing
22 changed files
with
2,667 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
11 changes: 11 additions & 0 deletions
11
dbptk-bindings/dbptk-bindings-siard2-2/src/main/resources/config/jaxb/jodatime.xjb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.