forked from Jhuster/ImageCropper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
75 lines (61 loc) · 2.42 KB
/
pom.xml
File metadata and controls
75 lines (61 loc) · 2.42 KB
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
<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>com.naitsirc.imagecropper</groupId>
<artifactId>ImageCropper</artifactId>
<version>0.0.1</version>
<packaging>jar</packaging>
<name>Android ImageCropper</name>
<url>https://github.com/Naitsirc/ImageCropper</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<scm.branch>master</scm.branch>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- upgrade to 3.4 fails build, see https://github.com/simpligility/android-maven-plugin/issues/554 -->
<maven-plugin-plugin.version>3.3</maven-plugin-plugin.version>
<maven.api.version>3.0.4</maven.api.version>
<takari.test.version>2.9.1</takari.test.version>
<easymock.version>3.4</easymock.version>
<powermock.version>1.6.6</powermock.version>
<publisher.version>v2-rev13-1.19.0</publisher.version>
<asm.version>5.0.4</asm.version>
<!-- Attention - make sure that the tools version is the versions of
the transitive dependencies of the builder version -->
<android.builder.version>2.3.0</android.builder.version>
<android.tools.version>25.3.0</android.tools.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>4.0.1.2</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration> <!-- Compile java 7 compatible bytecode -->
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
</project>