| OLD | NEW | 
|---|
| (Empty) |  | 
|  | 1 <?xml version="1.0" encoding="UTF-8"?> | 
|  | 2 <project | 
|  | 3         xmlns="http://maven.apache.org/POM/4.0.0" | 
|  | 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"> | 
|  | 6     <modelVersion>4.0.0</modelVersion> | 
|  | 7 | 
|  | 8     <parent> | 
|  | 9         <groupId>org.adblockplus.libadblockplus.android</groupId> | 
|  | 10         <artifactId>parent</artifactId> | 
|  | 11         <version>1.0</version> | 
|  | 12     </parent> | 
|  | 13 | 
|  | 14     <groupId>org.adblockplus.libadblockplus.android</groupId> | 
|  | 15     <artifactId>webviewapp</artifactId> | 
|  | 16     <version>${selfVersion}</version> | 
|  | 17     <packaging>apk</packaging> | 
|  | 18     <name>libadblockplus-android-webviewapp</name> | 
|  | 19 | 
|  | 20     <dependencies> | 
|  | 21         <!-- android --> | 
|  | 22         <dependency> | 
|  | 23             <groupId>com.google.android</groupId> | 
|  | 24             <artifactId>android</artifactId> | 
|  | 25             <version>5.0</version> <!-- 5.0 = target-21 --> | 
|  | 26             <type>jar</type> | 
|  | 27             <scope>provided</scope> | 
|  | 28         </dependency> | 
|  | 29 | 
|  | 30         <!-- library --> | 
|  | 31         <dependency> | 
|  | 32             <groupId>org.adblockplus.libadblockplus.android</groupId> | 
|  | 33             <artifactId>webview</artifactId> | 
|  | 34             <version>${selfVersion}</version> | 
|  | 35             <type>aar</type> | 
|  | 36         </dependency> | 
|  | 37 | 
|  | 38         <!-- settings --> | 
|  | 39         <dependency> | 
|  | 40             <groupId>org.adblockplus.libadblockplus.android</groupId> | 
|  | 41             <artifactId>settings</artifactId> | 
|  | 42             <version>${selfVersion}</version> | 
|  | 43             <type>aar</type> | 
|  | 44         </dependency> | 
|  | 45     </dependencies> | 
|  | 46 | 
|  | 47     <build> | 
|  | 48         <sourceDirectory>${basedir}/src</sourceDirectory> | 
|  | 49         <plugins> | 
|  | 50 | 
|  | 51             <!-- compile java code and package --> | 
|  | 52             <plugin> | 
|  | 53                 <groupId>com.simpligility.maven.plugins</groupId> | 
|  | 54                 <artifactId>android-maven-plugin</artifactId> | 
|  | 55                 <version>4.4.1</version> | 
|  | 56                 <configuration> | 
|  | 57                     <sdk> | 
|  | 58                         <platform>21</platform> | 
|  | 59                         <buildTools>${buildTools}</buildTools> | 
|  | 60                     </sdk> | 
|  | 61 | 
|  | 62                     <!-- specific files locations --> | 
|  | 63                     <androidManifestFile>AndroidManifest.xml</androidManifestFil
    e> | 
|  | 64                     <nativeLibrariesDirectory>libs</nativeLibrariesDirectory> | 
|  | 65                     <resourceDirectory>res</resourceDirectory> | 
|  | 66 | 
|  | 67                 </configuration> | 
|  | 68                 <extensions>true</extensions> | 
|  | 69             </plugin> | 
|  | 70 | 
|  | 71         </plugins> | 
|  | 72     </build> | 
|  | 73 | 
|  | 74 </project> | 
| OLD | NEW | 
|---|