| 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 <parent> | 8 <parent> |
| 9 <groupId>org.adblockplus.libadblockplus.android</groupId> | 9 <groupId>org.adblockplus.libadblockplus.android</groupId> |
| 10 <artifactId>parent</artifactId> | 10 <artifactId>parent</artifactId> |
| 11 <version>1.0</version> | 11 <version>1.0</version> |
| 12 </parent> | 12 </parent> |
| 13 | 13 |
| 14 <groupId>org.adblockplus.libadblockplus.android</groupId> | 14 <groupId>org.adblockplus.libadblockplus.android</groupId> |
| 15 <artifactId>webview</artifactId> | 15 <artifactId>webview</artifactId> |
| 16 <version>1.0.1</version> | 16 <version>2.0</version> |
| 17 <packaging>aar</packaging> | 17 <packaging>aar</packaging> |
| 18 <name>libadblockplus-android-webview</name> | 18 <name>libadblockplus-android-webview</name> |
| 19 | 19 |
| 20 <dependencies> | 20 <dependencies> |
| 21 <!-- android --> | 21 <!-- android --> |
| 22 <dependency> | 22 <dependency> |
| 23 <groupId>com.google.android</groupId> | 23 <groupId>com.google.android</groupId> |
| 24 <artifactId>android</artifactId> | 24 <artifactId>android</artifactId> |
| 25 <version>5.0</version> <!-- 5.0 = target-21 --> | 25 <version>5.0</version> <!-- 5.0 = target-21 --> |
| 26 <type>jar</type> | 26 <type>jar</type> |
| 27 <scope>provided</scope> | 27 <scope>provided</scope> |
| 28 </dependency> | 28 </dependency> |
| 29 | 29 |
| 30 <!-- library --> | 30 <!-- library --> |
| 31 <dependency> | 31 <dependency> |
| 32 <groupId>org.adblockplus.libadblockplus.android</groupId> | 32 <groupId>org.adblockplus.libadblockplus.android</groupId> |
| 33 <artifactId>library</artifactId> | 33 <artifactId>library</artifactId> |
| 34 <version>1.0</version> | 34 <version>2.0</version> |
| 35 <type>aar</type> | 35 <type>aar</type> |
| 36 </dependency> | 36 </dependency> |
| 37 </dependencies> | 37 </dependencies> |
| 38 | 38 |
| 39 <build> | 39 <build> |
| 40 <sourceDirectory>${basedir}/src</sourceDirectory> | 40 <sourceDirectory>${basedir}/src</sourceDirectory> |
| 41 <plugins> | 41 <plugins> |
| 42 | 42 |
| 43 <!-- compile java code and package --> | 43 <!-- compile java code and package --> |
| 44 <plugin> | 44 <plugin> |
| (...skipping 15 matching lines...) Expand all Loading... |
| 60 <assetsDirectory>assets</assetsDirectory> | 60 <assetsDirectory>assets</assetsDirectory> |
| 61 | 61 |
| 62 </configuration> | 62 </configuration> |
| 63 <extensions>true</extensions> | 63 <extensions>true</extensions> |
| 64 </plugin> | 64 </plugin> |
| 65 | 65 |
| 66 </plugins> | 66 </plugins> |
| 67 </build> | 67 </build> |
| 68 | 68 |
| 69 </project> | 69 </project> |
| OLD | NEW |