-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
executable file
·65 lines (65 loc) · 2.73 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
<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>
<groupId>lux.pkcs7.tools</groupId>
<artifactId>lux.pkcs7.tools</artifactId>
<version>0.2.4</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<cryptopro.libs.path>${user.home}\Downloads\jcp.1.0.53\jcp.1.0.53\lib</cryptopro.libs.path>
<sygnal.com.libs.path>${user.home}\Downloads\sygnalcom</sygnal.com.libs.path>
</properties>
<dependencies>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcmail-jdk15on</artifactId>
<version>1.47</version>
</dependency>
<dependency>
<groupId>ru.signalcom</groupId>
<artifactId>sc-provider</artifactId>
<version>2.2.12</version>
<scope>system</scope>
<systemPath>${sygnal.com.libs.path}/sccsp.jar</systemPath>
</dependency>
<dependency>
<groupId>ru.signalcom</groupId>
<artifactId>sc-cms</artifactId>
<version>1.2.7</version>
<scope>system</scope>
<systemPath>${sygnal.com.libs.path}/sccms.jar</systemPath>
</dependency>
<dependency>
<groupId>ru.CryptoPro</groupId>
<artifactId>JCP</artifactId>
<version>1.0.53</version>
<scope>system</scope>
<systemPath>${cryptopro.libs.path}/JCP.jar</systemPath>
</dependency>
<dependency>
<groupId>ru.CryptoPro</groupId>
<artifactId>ASN1P</artifactId>
<version>1.0.53</version>
<scope>system</scope>
<systemPath>${cryptopro.libs.path}/ASN1P.jar</systemPath>
</dependency>
<dependency>
<groupId>ru.CryptoPro</groupId>
<artifactId>asn1rt</artifactId>
<version>1.0.53</version>
<scope>system</scope>
<systemPath>${cryptopro.libs.path}/asn1rt.jar</systemPath>
</dependency>
<dependency>
<groupId>ru.CryptoPro</groupId>
<artifactId>JCryptoP</artifactId>
<version>1.0.53</version>
<scope>system</scope>
<systemPath>${cryptopro.libs.path}/JCryptoP.jar</systemPath>
</dependency>
</dependencies>
<name>Luxoft-PKCS7-tools</name>
<description>This project help me to solve problem deals with CryptoPro JCP on IBM J9.
Main work and ides was done by Svetlin Nakov.
</description>
</project>