Index: libadblockplus-android/pom.xml |
diff --git a/libadblockplus-android/pom.xml b/libadblockplus-android/pom.xml |
deleted file mode 100644 |
index 8c920383b555cdef68f81998f2fc56b5924a5bbf..0000000000000000000000000000000000000000 |
--- a/libadblockplus-android/pom.xml |
+++ /dev/null |
@@ -1,94 +0,0 @@ |
-<?xml version="1.0" encoding="UTF-8"?> |
-<project |
- xmlns="http://maven.apache.org/POM/4.0.0" |
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
- <modelVersion>4.0.0</modelVersion> |
- |
- <parent> |
- <groupId>org.adblockplus.libadblockplus.android</groupId> |
- <artifactId>parent</artifactId> |
- <version>1.0</version> |
- </parent> |
- |
- <groupId>org.adblockplus.libadblockplus.android</groupId> |
- <artifactId>library</artifactId> |
- <version>2.0</version> |
- <packaging>aar</packaging> |
- <name>libadblockplus-android</name> |
- |
- <dependencies> |
- <!-- android --> |
- <dependency> |
- <groupId>com.google.android</groupId> |
- <artifactId>android</artifactId> |
- <version>[4.1,)</version> <!-- 4.1 = target-16 --> |
- <type>jar</type> |
- <scope>provided</scope> |
- </dependency> |
- </dependencies> |
- |
- <build> |
- <sourceDirectory>${basedir}/src</sourceDirectory> |
- <plugins> |
- <!-- clean or compile native libraries using Ant --> |
- <plugin> |
- <artifactId>maven-antrun-plugin</artifactId> |
- <version>1.8</version> |
- <executions> |
- <execution> |
- <id>ant-clean</id> |
- <phase>pre-clean</phase> |
- <configuration> |
- <target> |
- <ant antfile="${basedir}/build.xml" target="-pre-clean"/> |
- </target> |
- </configuration> |
- <goals> |
- <goal>run</goal> |
- </goals> |
- </execution> |
- <execution> |
- <id>ant-compile</id> |
- <phase>generate-resources</phase> |
- <configuration> |
- <target> |
- <ant antfile="${basedir}/build.xml" target="-pre-build"/> |
- </target> |
- </configuration> |
- <goals> |
- <goal>run</goal> |
- </goals> |
- </execution> |
- </executions> |
- </plugin> |
- |
- <!-- compile java code and package --> |
- <plugin> |
- <groupId>com.simpligility.maven.plugins</groupId> |
- <artifactId>android-maven-plugin</artifactId> |
- <version>4.4.1</version> |
- <goals> |
- <goal>ndk-build</goal> |
- </goals> |
- <configuration> |
- <sdk> |
- <platform>16</platform> |
- </sdk> |
- <ndk> |
- <path>${env.ANDROID_NDK_HOME}</path> |
- </ndk> |
- |
- <!-- specific files locations --> |
- <androidManifestFile>AndroidManifest.xml</androidManifestFile> |
- <resourceDirectory>res</resourceDirectory> |
- <nativeLibrariesDirectory>libs</nativeLibrariesDirectory> |
- |
- </configuration> |
- <extensions>true</extensions> |
- </plugin> |
- |
- </plugins> |
- </build> |
- |
-</project> |