-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Se actualiza a la versión 2.2.2. Se actualiza el nombre del modulo
Integra-informe-firma por Integra-signature-report.
- Loading branch information
Susana.Mesa
authored and
Susana.Mesa
committed
Dec 23, 2020
1 parent
82bf9a3
commit 35e7171
Showing
57 changed files
with
836 additions
and
868 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,127 +1,127 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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> | ||
<parent> | ||
<groupId>es.gob.afirma</groupId> | ||
<artifactId>Integra-parent</artifactId> | ||
<version>2.2.1_000</version> | ||
</parent> | ||
<artifactId>Integra-commons-pdf-bc</artifactId> | ||
<name>Integra-commons-pdf-bc</name> | ||
<organization> | ||
<name>Gobierno de España</name> | ||
</organization> | ||
<build> | ||
<resources> | ||
<resource> | ||
<directory></directory> | ||
<includes> | ||
<include>LICENSE.txt</include> | ||
</includes> | ||
<targetPath>${basedir}/target/classes/META-INF</targetPath> | ||
</resource> | ||
<resource> | ||
<directory></directory> | ||
<includes> | ||
<include>messages/**</include> | ||
</includes> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>2.3.1</version> | ||
<configuration> | ||
<excludes> | ||
<exclude>*.properties</exclude> | ||
<exclude>*.jks</exclude> | ||
<exclude>transformers/**</exclude> | ||
</excludes> | ||
<archive> | ||
<manifest> | ||
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> | ||
</manifest> | ||
</archive> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>jar-integra-commons-pdf-bc</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
<phase>package</phase> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.3.2</version> | ||
<configuration> | ||
<source>1.8</source> | ||
<target>1.8</target> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<dependencies> | ||
<dependency> | ||
<groupId>es.gob.afirma</groupId> | ||
<artifactId>Integra-commons</artifactId> | ||
<version>${version.Integra.commons}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.8.2</version> | ||
<type>jar</type> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bouncycastle</groupId> | ||
<artifactId>bcprov-jdk16</artifactId> | ||
<version>1.46</version> | ||
<type>jar</type> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bouncycastle</groupId> | ||
<artifactId>bcmail-jdk16</artifactId> | ||
<version>1.46</version> | ||
<type>jar</type> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.lowagie</groupId> | ||
<artifactId>itext</artifactId> | ||
<version>2.2</version> | ||
<exclusions> | ||
<exclusion> | ||
<artifactId>bcmail-jdk14</artifactId> | ||
<groupId>bouncycastle</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>bcprov-jdk14</artifactId> | ||
<groupId>bouncycastle</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>bctsp-jdk14</artifactId> | ||
<groupId>bouncycastle</groupId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bouncycastle</groupId> | ||
<artifactId>bctsp-jdk16</artifactId> | ||
<version>1.46</version> | ||
<type>jar</type> | ||
<scope>compile</scope> | ||
</dependency> | ||
</dependencies> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<project.build.jdk>1.8</project.build.jdk> | ||
</properties> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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> | ||
<parent> | ||
<groupId>es.gob.afirma</groupId> | ||
<artifactId>Integra-parent</artifactId> | ||
<version>2.2.2_000</version> | ||
</parent> | ||
<artifactId>Integra-commons-pdf-bc</artifactId> | ||
<name>Integra-commons-pdf-bc</name> | ||
<organization> | ||
<name>Gobierno de España</name> | ||
</organization> | ||
<build> | ||
<resources> | ||
<resource> | ||
<directory></directory> | ||
<includes> | ||
<include>LICENSE.txt</include> | ||
</includes> | ||
<targetPath>${basedir}/target/classes/META-INF</targetPath> | ||
</resource> | ||
<resource> | ||
<directory></directory> | ||
<includes> | ||
<include>messages/**</include> | ||
</includes> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>2.3.1</version> | ||
<configuration> | ||
<excludes> | ||
<exclude>*.properties</exclude> | ||
<exclude>*.jks</exclude> | ||
<exclude>transformers/**</exclude> | ||
</excludes> | ||
<archive> | ||
<manifest> | ||
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> | ||
</manifest> | ||
</archive> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>jar-integra-commons-pdf-bc</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
<phase>package</phase> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.3.2</version> | ||
<configuration> | ||
<source>1.8</source> | ||
<target>1.8</target> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<dependencies> | ||
<dependency> | ||
<groupId>es.gob.afirma</groupId> | ||
<artifactId>Integra-commons</artifactId> | ||
<version>${version.Integra.commons}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.8.2</version> | ||
<type>jar</type> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bouncycastle</groupId> | ||
<artifactId>bcprov-jdk16</artifactId> | ||
<version>1.46</version> | ||
<type>jar</type> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bouncycastle</groupId> | ||
<artifactId>bcmail-jdk16</artifactId> | ||
<version>1.46</version> | ||
<type>jar</type> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.lowagie</groupId> | ||
<artifactId>itext</artifactId> | ||
<version>2.2</version> | ||
<exclusions> | ||
<exclusion> | ||
<artifactId>bcmail-jdk14</artifactId> | ||
<groupId>bouncycastle</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>bcprov-jdk14</artifactId> | ||
<groupId>bouncycastle</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>bctsp-jdk14</artifactId> | ||
<groupId>bouncycastle</groupId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bouncycastle</groupId> | ||
<artifactId>bctsp-jdk16</artifactId> | ||
<version>1.46</version> | ||
<type>jar</type> | ||
<scope>compile</scope> | ||
</dependency> | ||
</dependencies> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<project.build.jdk>1.8</project.build.jdk> | ||
</properties> | ||
</project> |
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 |
---|---|---|
@@ -1,56 +1,56 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
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> | ||
<parent> | ||
<groupId>es.gob.afirma</groupId> | ||
<artifactId>Integra-parent</artifactId> | ||
<version>2.2.1_000</version> | ||
</parent> | ||
<artifactId>Integra-encryption</artifactId> | ||
<name>Integra-encryption</name> | ||
<dependencies> | ||
<dependency> | ||
<groupId>es.gob.afirma</groupId> | ||
<artifactId>Integra-commons</artifactId> | ||
<version>${version.Integra.commons}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-codec</groupId> | ||
<artifactId>commons-codec</artifactId> | ||
<version>1.10</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bouncycastle</groupId> | ||
<artifactId>bcprov-jdk16</artifactId> | ||
<version>1.46</version> | ||
<type>jar</type> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.8.2</version> | ||
<type>jar</type> | ||
<scope>compile</scope> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.3.2</version> | ||
<configuration> | ||
<source>1.8</source> | ||
<target>1.8</target> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<project.build.jdk>1.8</project.build.jdk> | ||
</properties> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
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> | ||
<parent> | ||
<groupId>es.gob.afirma</groupId> | ||
<artifactId>Integra-parent</artifactId> | ||
<version>2.2.2_000</version> | ||
</parent> | ||
<artifactId>Integra-encryption</artifactId> | ||
<name>Integra-encryption</name> | ||
<dependencies> | ||
<dependency> | ||
<groupId>es.gob.afirma</groupId> | ||
<artifactId>Integra-commons</artifactId> | ||
<version>${version.Integra.commons}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-codec</groupId> | ||
<artifactId>commons-codec</artifactId> | ||
<version>1.10</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bouncycastle</groupId> | ||
<artifactId>bcprov-jdk16</artifactId> | ||
<version>1.46</version> | ||
<type>jar</type> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.8.2</version> | ||
<type>jar</type> | ||
<scope>compile</scope> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.3.2</version> | ||
<configuration> | ||
<source>1.8</source> | ||
<target>1.8</target> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<project.build.jdk>1.8</project.build.jdk> | ||
</properties> | ||
</project> |
Oops, something went wrong.