-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
79 lines (72 loc) · 2.35 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
<?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>ch.uzh.csg</groupId>
<artifactId>android-kitkat-nfc-library</artifactId>
<version>0.1.2</version>
<packaging>jar</packaging>
<name>AndroidKitKatNFCLibrary</name>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<!-- Download the following zip http://www.acs.com.hk/download-driver-unified/5102/ACS-LIB-Android-112-A.zip
\ Install the acssmc-1.1.2.jar jar to your local maven repo: mvn install:install-file
-Dfile=libs/acssmc-1.1.2.jar -DgroupId=com.acs.smartcard -DartifactId=acssmc
-Dversion=1.1.2 -Dpackaging=jar -->
<dependency>
<groupId>com.acs.smartcard</groupId>
<artifactId>acssmc</artifactId>
<version>1.1.2</version>
</dependency>
<dependency>
<groupId>com.madgag.spongycastle</groupId>
<artifactId>prov</artifactId>
<version>1.51.0.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.6</version>
</dependency>
<!-- Power Mock -->
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>1.5.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>1.5.5</version>
<scope>test</scope>
</dependency>
<!-- This is used to access Android Resources (such as the HCE and IsoDep) from a Java Project \
install with https://github.com/mosabua/maven-android-sdk-deployer -->
<dependency>
<groupId>android</groupId>
<artifactId>android</artifactId>
<!-- <version>4.4.2_r4</version> -->
<version>5.1.1_r2</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
</project>