forked from ctt-gob-es/clienteafirma
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
110 lines (100 loc) · 3.62 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>es.gob.afirma</groupId>
<version>3.3.2-SNAPSHOT</version>
<artifactId>afirma-client</artifactId>
<packaging>pom</packaging>
<name>afirma-client</name>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
</properties>
<description>Librerías del núcleo de afirma</description>
<modules>
<module>afirma-core</module>
<module>afirma-core-keystores</module>
<module>afirma-crypto-cadestri-client</module>
<module>afirma-crypto-certvalidation</module>
<module>afirma-crypto-cipher</module>
<module>afirma-crypto-core-pkcs7</module>
<module>afirma-crypto-cades</module>
<module>afirma-crypto-cades-multi</module>
<module>afirma-crypto-cms</module>
<module>afirma-crypto-cms-enveloper</module>
<module>afirma-crypto-core-pkcs7-tsp</module>
<module>afirma-crypto-core-xml</module>
<module>afirma-crypto-odf</module>
<module>afirma-crypto-padestri-client</module>
<module>afirma-crypto-pdf-enhancer</module>
<module>afirma-crypto-xades</module>
<module>afirma-crypto-xadestri-client</module>
<module>afirma-crypto-xadestri-server</module>
<module>afirma-crypto-xmlsignature</module>
<module>afirma-crypto-ooxml</module>
<module>afirma-crypto-jarverifier</module>
<module>afirma-keystores-capiaddressbook</module>
<module>afirma-keystores-filters-rfc</module>
<module>afirma-keystores-mozilla</module>
<module>afirma-keystores-single</module>
<module>afirma-ui-core-jse</module>
<module>afirma-ui-core-jse-keystores</module>
<module>afirma-util</module>
<module>afirma-crypto-pdf</module>
<module>afirma-core-massive</module>
</modules>
<repositories>
<repository>
<id>uji</id>
<url>http://devel.uji.es/nexus/content/groups/public/</url>
</repository>
</repositories>
<scm>
<connection>scm:svn:http://svn-ctt.administracionelectronica.gob.es/svn/clienteafirma/project/afirma/trunk</connection>
<url>http://svn-ctt.administracionelectronica.gob.es/svn/clienteafirma/project/afirma/trunk</url>
</scm>
<distributionManagement>
<repository>
<id>nexus</id>
<url>http://devel01.uji.es:8080/nexus/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>nexus</id>
<url>http://devel01.uji.es:8080/nexus/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<fork>true</fork>
<compilerArgs>
- <arg>-Xbootclasspath:${java.home}/lib/jsse.jar${path.separator}${java.home}/lib/rt.jar${path.separator}${java.home}/lib/jce.jar</arg>
- </compilerArgs>
<debug>false</debug>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<tagNameFormat>${project.name}_@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</build>
</project>