forked from JoanZapata/android-pdfview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
153 lines (144 loc) · 6.33 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?xml version="1.0"?>
<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">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.joanzapata.pdfview</groupId>
<artifactId>android-pdfview-parent</artifactId>
<name>Android PDFView parent</name>
<description>An easy-to-use Android PDFView component with swipe and zoom</description>
<packaging>pom</packaging>
<version>1.0.5-SNAPSHOT</version>
<url>http://joanzapata.com/android-pdfview/</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/android-pdfview/</url>
<connection>scm:git:git://github.com/JoanZapata/android-pdfview.git</connection>
<developerConnection>scm:git:ssh://[email protected]/JoanZapata/android-pdfview.git</developerConnection>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<name>Joan Zapata</name>
<email>[email protected]</email>
<url>http://joanzapata.com</url>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven-compiler-plugin.version>3.0</maven-compiler-plugin.version>
<java.version>1.6</java.version>
<android-maven-plugin.version>3.8.2</android-maven-plugin.version>
<android.version>4.1.1.4</android.version>
<api.platform>16</api.platform>
<androidannotations.version>2.7</androidannotations.version>
<actionBarSherlock.version>4.2.0</actionBarSherlock.version>
<maven-jarsigner.version>1.2</maven-jarsigner.version>
<maven-license.version>1.10.b1</maven-license.version>
<password />
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>${android-maven-plugin.version}</version>
<configuration>
<androidManifestFile>${project.basedir}/AndroidManifest.xml</androidManifestFile>
<assetsDirectory>${project.basedir}/assets</assetsDirectory>
<resourceDirectory>${project.basedir}/res</resourceDirectory>
<nativeLibrariesDirectory>${project.basedir}/libs</nativeLibrariesDirectory>
<sdk>
<platform>${api.platform}</platform>
</sdk>
<undeployBeforeDeploy>true</undeployBeforeDeploy>
</configuration>
<extensions>true</extensions>
</plugin>
<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>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>${maven-license.version}</version>
<configuration>
<header>HEADER.txt</header>
<excludes>
<exclude>**/.idea/**</exclude>
<exclude>**/vudroid/**</exclude>
<exclude>**/libs/**</exclude>
<exclude>**/*.iml</exclude>
<exclude>LICENSE.txt</exclude>
<exclude>HEADER.txt</exclude>
<exclude>RELEASE.md</exclude>
<exclude>**/.gitignore</exclude>
<exclude>README.md</exclude>
<exclude>**/keystore</exclude>
</excludes>
<strictCheck>true</strictCheck>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<inherited>false</inherited>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>gradlew</executable>
<arguments>
<argument>clean</argument>
<argument>assemble</argument>
<argument>-Pversion=${project.version}</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<modules>
<module>android-pdfview</module>
<module>android-pdfview-sample</module>
</modules>
</project>