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

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

Issue 29351744: Issue 4399 - Add WebView inheritor with ad blocking (Closed)
Left Patch Set: moved AdblockWebView to separate module Created Oct. 4, 2016, 12:14 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
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 <parent>
9 <artifactId>libadblockplus-android</artifactId> 9 <groupId>org.adblockplus.libadblockplus.android</groupId>
10 <version>1.0</version> 10 <artifactId>parent</artifactId>
11 » <packaging>aar</packaging> 11 <version>1.0</version>
12 </parent>
13
14 <groupId>org.adblockplus.libadblockplus.android</groupId>
15 <artifactId>library</artifactId>
16 <version>${selfVersion}</version>
17 <packaging>aar</packaging>
12 <name>libadblockplus-android</name> 18 <name>libadblockplus-android</name>
13 <description>AdBlock Plus JNI Binding Library</description>
14 19
15 <dependencies> 20 <dependencies>
16 <!-- android --> 21 <!-- android -->
17 <dependency> 22 <dependency>
18 <groupId>com.google.android</groupId> 23 <groupId>com.google.android</groupId>
19 <artifactId>android</artifactId> 24 <artifactId>android</artifactId>
20 <version>[4.1,)</version> <!-- 4.1 = target-16 --> 25 <version>[4.1,)</version> <!-- 4.1 = target-16 -->
21 <type>jar</type> 26 <type>jar</type>
22 <scope>provided</scope> 27 <scope>provided</scope>
23 </dependency> 28 </dependency>
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 <nativeLibrariesDirectory>libs</nativeLibrariesDirectory> 85 <nativeLibrariesDirectory>libs</nativeLibrariesDirectory>
81 86
82 </configuration> 87 </configuration>
83 <extensions>true</extensions> 88 <extensions>true</extensions>
84 </plugin> 89 </plugin>
85 90
86 </plugins> 91 </plugins>
87 </build> 92 </build>
88 93
89 </project> 94 </project>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld