OLD | NEW |
1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
2 <project | 2 <project |
3 xmlns="http://maven.apache.org/POM/4.0.0" | 3 xmlns="http://maven.apache.org/POM/4.0.0" |
4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
5 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apach
e.org/maven-v4_0_0.xsd"> | 5 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apach
e.org/maven-v4_0_0.xsd"> |
6 <modelVersion>4.0.0</modelVersion> | 6 <modelVersion>4.0.0</modelVersion> |
7 | 7 |
8 <groupId>org.adblockplus</groupId> | 8 <groupId>org.adblockplus</groupId> |
9 <artifactId>libadblockplus-android</artifactId> | 9 <artifactId>libadblockplus-android</artifactId> |
10 <version>1.3</version> | 10 <version>1.0</version> |
11 <packaging>aar</packaging> | 11 <packaging>aar</packaging> |
12 <name>libadblockplus-android</name> | 12 <name>libadblockplus-android</name> |
13 <description>AdBlock Plus JNI Binding Library</description> | 13 <description>AdBlock Plus JNI Binding Library</description> |
14 | 14 |
15 <dependencies> | 15 <dependencies> |
16 <!-- android --> | 16 <!-- android --> |
17 <dependency> | 17 <dependency> |
18 <groupId>com.google.android</groupId> | 18 <groupId>com.google.android</groupId> |
19 <artifactId>android</artifactId> | 19 <artifactId>android</artifactId> |
20 <version>[4.1,)</version> <!-- 4.1 = target-16 --> | 20 <version>[4.1,)</version> <!-- 4.1 = target-16 --> |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 <nativeLibrariesDirectory>libs</nativeLibrariesDirectory> | 80 <nativeLibrariesDirectory>libs</nativeLibrariesDirectory> |
81 | 81 |
82 </configuration> | 82 </configuration> |
83 <extensions>true</extensions> | 83 <extensions>true</extensions> |
84 </plugin> | 84 </plugin> |
85 | 85 |
86 </plugins> | 86 </plugins> |
87 </build> | 87 </build> |
88 | 88 |
89 </project> | 89 </project> |
OLD | NEW |