Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: libadblockplus-android-webviewapp/pom.xml

Issue 29351744: Issue 4399 - Add WebView inheritor with ad blocking (Closed)
Left Patch Set: supporting api 21 with referer and pre-21 with no referer Created Sept. 30, 2016, 1:28 p.m.
Right Patch Set: changed packages, now using AdblockEngine (original ABPEngine), improved demo app Created Oct. 25, 2016, 11:20 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « libadblockplus-android-webviewapp/build.xml ('k') | libadblockplus-android-webviewapp/project.properties » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
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 </dependencies>
38
39 <build>
40 <sourceDirectory>${basedir}/src</sourceDirectory>
41 <plugins>
42
43 <!-- compile java code and package -->
44 <plugin>
45 <groupId>com.simpligility.maven.plugins</groupId>
46 <artifactId>android-maven-plugin</artifactId>
47 <version>4.4.1</version>
48 <configuration>
49 <sdk>
50 <platform>21</platform>
51 <buildTools>${buildTools}</buildTools>
52 </sdk>
53
54 <!-- specific files locations -->
55 <androidManifestFile>AndroidManifest.xml</androidManifestFil e>
56 <nativeLibrariesDirectory>libs</nativeLibrariesDirectory>
57 <resourceDirectory>res</resourceDirectory>
58
59 </configuration>
60 <extensions>true</extensions>
61 </plugin>
62
63 </plugins>
64 </build>
65
66 </project>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld