Skip to content

Commit

Permalink
Feature/dip (#7)
Browse files Browse the repository at this point in the history
Add delivery request reply generation for SEDA
  • Loading branch information
edevillerxelians authored Oct 21, 2024
1 parent 5c75cb7 commit 7c80e5a
Show file tree
Hide file tree
Showing 376 changed files with 48,761 additions and 50,961 deletions.
56 changes: 25 additions & 31 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>fr.xelians</groupId>
<artifactId>sipg</artifactId>
<version>1.35</version>
<version>1.36</version>
<packaging>jar</packaging>

<organization>
Expand All @@ -16,7 +16,7 @@
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

Expand Down Expand Up @@ -49,8 +49,6 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.source.version>3.2.1</maven.source.version>
<javadoc.source.version>3.6.0</javadoc.source.version>
</properties>

<scm>
Expand Down Expand Up @@ -116,57 +114,52 @@
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.17.0</version>
<version>2.17.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.17.0</version>
<version>2.17.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.17.0</version>
<version>2.17.2</version>
</dependency>

<!-- Utils -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.17.0</version>
<version>1.17.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.14.0</version>
<version>3.17.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.26.1</version>
<version>1.27.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.16.1</version>
</dependency>
<dependency>
<groupId>com.github.junrar</groupId>
<artifactId>junrar</artifactId>
<version>7.5.5</version>
<version>2.17.0</version>
</dependency>

<!-- Log -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.12</version>
<version>2.0.16</version>
</dependency>

<dependency>
<groupId>uk.gov.nationalarchives</groupId>
<artifactId>droid-core</artifactId>
<version>6.7.0</version>
<version>6.8.0</version>
<exclusions>
<exclusion>
<groupId>org.glassfish.jaxb</groupId>
Expand Down Expand Up @@ -195,35 +188,34 @@
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
<version>3.0.1</version>
<version>3.0.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.10.0</version>
<version>1.12.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.2</version>
<version>5.11.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.6</version>
<version>1.5.11</version>
<scope>test</scope>
</dependency>
</dependencies>


<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.source.version}</version>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-source</id>
Expand Down Expand Up @@ -300,15 +292,17 @@
</reportSet>
</reportSets>
</plugin>
<!--
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>9.0.6</version>
<version>11.0.0</version>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.21.2</version>
<version>3.23.0</version>
<configuration>
<linkXRef>true</linkXRef>
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
Expand Down Expand Up @@ -398,7 +392,7 @@
<plugin>
<groupId>org.jvnet.jaxb</groupId>
<artifactId>jaxb-maven-plugin</artifactId>
<version>4.0.0</version>
<version>4.0.8</version>
<executions>
<execution>
<configuration>
Expand All @@ -413,6 +407,7 @@
<include>binding.xjb</include>
</bindingIncludes>
<catalog>src/main/resources/seda-2.2/seda-vitam.cat</catalog>
<extension>true</extension>
<args>
<arg>-Xinheritance</arg>
<arg>-Xannotate</arg>
Expand All @@ -422,9 +417,8 @@
<plugin>
<groupId>org.jvnet.jaxb</groupId>
<artifactId>jaxb-plugin-annotate</artifactId>
<version>3.0.1</version>
<version>4.0.8</version>
</plugin>

</plugins>
</configuration>
<goals>
Expand Down Expand Up @@ -453,7 +447,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${javadoc.source.version}</version>
<version>3.10.1</version>
<configuration>
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
<excludePackageNames>org.*:uk.*:fr.gouv.*</excludePackageNames>
Expand All @@ -471,7 +465,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<version>3.2.3</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down
Loading

0 comments on commit 7c80e5a

Please sign in to comment.