-
Notifications
You must be signed in to change notification settings - Fork 530
/
pom.xml
87 lines (78 loc) · 3.22 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
<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>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.joanzapata.android</groupId>
<artifactId>base-adapter-helper-parent</artifactId>
<version>1.1.12-SNAPSHOT</version>
<name>base-adapter-helper-parent</name>
<packaging>pom</packaging>
<description>Abstraction for the usual BaseAdapter "ViewHolder" pattern</description>
<url>http://joanzapata.com/base-adapter-helper</url>
<inceptionYear>2013</inceptionYear>
<licenses>
<license>
<name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<url>http://github.com/JoanZapata/base-adapter-helper/</url>
<connection>scm:git:git://github.com/JoanZapata/base-adapter-helper.git</connection>
<developerConnection>scm:git:ssh://git@github.com/JoanZapata/base-adapter-helper.git</developerConnection>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<name>Joan Zapata</name>
<email>zapata.joan@gmail.com</email>
<url>http://joanzapata.com</url>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version>
<android.version>4.1.1.4</android.version>
<java.version>1.6</java.version>
<picasso.version>2.1.1</picasso.version>
<android-maven-plugin.version>3.8.1</android-maven-plugin.version>
<api.platform>16</api.platform>
<androidannotations.version>2.7</androidannotations.version>
<maven-jarsigner.version>1.2</maven-jarsigner.version>
<password />
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.10.b1</version>
<configuration>
<header>LICENSE.txt</header>
<excludes>
<exclude>.idea/**</exclude>
<exclude>LICENSE.txt</exclude>
<exclude>.gitignore</exclude>
<exclude>README.md</exclude>
</excludes>
<strictCheck>true</strictCheck>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>base-adapter-helper</module>
<module>base-adapter-helper-sample</module>
</modules>
</project>