| 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>webviewapp</artifactId> | 15     <artifactId>webviewapp</artifactId> | 
| 16     <version>${selfVersion}</version> | 16     <version>1.0.1</version> | 
| 17     <packaging>apk</packaging> | 17     <packaging>apk</packaging> | 
| 18     <name>libadblockplus-android-webviewapp</name> | 18     <name>libadblockplus-android-webviewapp</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>webview</artifactId> | 33             <artifactId>webview</artifactId> | 
| 34             <version>${selfVersion}</version> | 34             <version>1.0</version> | 
| 35             <type>aar</type> | 35             <type>aar</type> | 
| 36         </dependency> | 36         </dependency> | 
| 37 | 37 | 
| 38         <!-- settings --> | 38         <!-- settings --> | 
| 39         <dependency> | 39         <dependency> | 
| 40             <groupId>org.adblockplus.libadblockplus.android</groupId> | 40             <groupId>org.adblockplus.libadblockplus.android</groupId> | 
| 41             <artifactId>settings</artifactId> | 41             <artifactId>settings</artifactId> | 
| 42             <version>${selfVersion}</version> | 42             <version>1.0.1</version> | 
| 43             <type>aar</type> | 43             <type>aar</type> | 
| 44         </dependency> | 44         </dependency> | 
| 45     </dependencies> | 45     </dependencies> | 
| 46 | 46 | 
| 47     <build> | 47     <build> | 
| 48         <sourceDirectory>${basedir}/src</sourceDirectory> | 48         <sourceDirectory>${basedir}/src</sourceDirectory> | 
| 49         <plugins> | 49         <plugins> | 
| 50 | 50 | 
| 51             <!-- compile java code and package --> | 51             <!-- compile java code and package --> | 
| 52             <plugin> | 52             <plugin> | 
| (...skipping 12 matching lines...) Expand all  Loading... | 
| 65                     <resourceDirectory>res</resourceDirectory> | 65                     <resourceDirectory>res</resourceDirectory> | 
| 66 | 66 | 
| 67                 </configuration> | 67                 </configuration> | 
| 68                 <extensions>true</extensions> | 68                 <extensions>true</extensions> | 
| 69             </plugin> | 69             </plugin> | 
| 70 | 70 | 
| 71         </plugins> | 71         </plugins> | 
| 72     </build> | 72     </build> | 
| 73 | 73 | 
| 74 </project> | 74 </project> | 
| OLD | NEW | 
|---|