Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
126 changes: 126 additions & 0 deletions platforms/android-30/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
<?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>
<groupId>com.simpligility.android.sdk-deployer</groupId>
<artifactId>android-30</artifactId>
<packaging>pom</packaging>
<name>Android Platform 11.0 API 30</name>

<parent>
<groupId>com.simpligility.android.sdk-deployer</groupId>
<artifactId>android-platforms</artifactId>
<version>2.10.0</version>
</parent>

<properties>
<jar.simpleVersion>8.0</jar.simpleVersion>
</properties>


<build>
<plugins>

<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classesDirectory>${android.sdk.path}/sources/android-30</classesDirectory>
<includes>
<include>**/*</include>
</includes>
<finalName>android-sources</finalName>
</configuration>
</execution>
</executions>
</plugin>


<plugin>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<id>android-jar</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>${platform.android.groupid}</groupId>
<artifactId>${platform.android.artifactid}</artifactId>
<packaging>jar</packaging>
<version>${jar.version}</version>
<file>${jar.path}</file>
<javadoc>${javadoc.path}</javadoc>
<sources>${project.build.directory}/android-sources.jar</sources>
</configuration>
</execution>
<execution>
<id>uiautomator-jar</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>${platform.uiautomator.groupid}</groupId>
<artifactId>${platform.uiautomator.artifactid}</artifactId>
<packaging>jar</packaging>
<version>${jar.version}</version>
<file>${uiautomator.path}</file>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<executions>
<execution>
<id>android-jar</id>
<phase>deploy</phase>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<groupId>${platform.android.groupid}</groupId>
<artifactId>${platform.android.artifactid}</artifactId>
<packaging>jar</packaging>
<version>${jar.version}</version>
<file>${jar.path}</file>
<url>${repo.url}</url>
<repositoryId>${repo.id}</repositoryId>
<javadoc>${javadoc.path}</javadoc>
<sources>${project.build.directory}/android-sources.jar</sources>
</configuration>
</execution>
<execution>
<id>uiautomator-jar</id>
<phase>deploy</phase>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<groupId>${platform.uiautomator.groupid}</groupId>
<artifactId>${platform.uiautomator.artifactid}</artifactId>
<packaging>jar</packaging>
<version>${jar.version}</version>
<file>${uiautomator.path}</file>
<url>${repo.url}</url>
<repositoryId>${repo.id}</repositoryId>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
126 changes: 126 additions & 0 deletions platforms/android-31/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
<?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>
<groupId>com.simpligility.android.sdk-deployer</groupId>
<artifactId>android-31</artifactId>
<packaging>pom</packaging>
<name>Android Platform 12.0 API 31</name>

<parent>
<groupId>com.simpligility.android.sdk-deployer</groupId>
<artifactId>android-platforms</artifactId>
<version>2.10.0</version>
</parent>

<properties>
<jar.simpleVersion>8.0</jar.simpleVersion>
</properties>


<build>
<plugins>

<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classesDirectory>${android.sdk.path}/sources/android-31</classesDirectory>
<includes>
<include>**/*</include>
</includes>
<finalName>android-sources</finalName>
</configuration>
</execution>
</executions>
</plugin>


<plugin>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<id>android-jar</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>${platform.android.groupid}</groupId>
<artifactId>${platform.android.artifactid}</artifactId>
<packaging>jar</packaging>
<version>${jar.version}</version>
<file>${jar.path}</file>
<javadoc>${javadoc.path}</javadoc>
<sources>${project.build.directory}/android-sources.jar</sources>
</configuration>
</execution>
<execution>
<id>uiautomator-jar</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>${platform.uiautomator.groupid}</groupId>
<artifactId>${platform.uiautomator.artifactid}</artifactId>
<packaging>jar</packaging>
<version>${jar.version}</version>
<file>${uiautomator.path}</file>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<executions>
<execution>
<id>android-jar</id>
<phase>deploy</phase>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<groupId>${platform.android.groupid}</groupId>
<artifactId>${platform.android.artifactid}</artifactId>
<packaging>jar</packaging>
<version>${jar.version}</version>
<file>${jar.path}</file>
<url>${repo.url}</url>
<repositoryId>${repo.id}</repositoryId>
<javadoc>${javadoc.path}</javadoc>
<sources>${project.build.directory}/android-sources.jar</sources>
</configuration>
</execution>
<execution>
<id>uiautomator-jar</id>
<phase>deploy</phase>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<groupId>${platform.uiautomator.groupid}</groupId>
<artifactId>${platform.uiautomator.artifactid}</artifactId>
<packaging>jar</packaging>
<version>${jar.version}</version>
<file>${uiautomator.path}</file>
<url>${repo.url}</url>
<repositoryId>${repo.id}</repositoryId>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
126 changes: 126 additions & 0 deletions platforms/android-32/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
<?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>
<groupId>com.simpligility.android.sdk-deployer</groupId>
<artifactId>android-32</artifactId>
<packaging>pom</packaging>
<name>Android Platform 12L API 32</name>

<parent>
<groupId>com.simpligility.android.sdk-deployer</groupId>
<artifactId>android-platforms</artifactId>
<version>2.10.0</version>
</parent>

<properties>
<jar.simpleVersion>8.0</jar.simpleVersion>
</properties>


<build>
<plugins>

<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classesDirectory>${android.sdk.path}/sources/android-32</classesDirectory>
<includes>
<include>**/*</include>
</includes>
<finalName>android-sources</finalName>
</configuration>
</execution>
</executions>
</plugin>


<plugin>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<id>android-jar</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>${platform.android.groupid}</groupId>
<artifactId>${platform.android.artifactid}</artifactId>
<packaging>jar</packaging>
<version>${jar.version}</version>
<file>${jar.path}</file>
<javadoc>${javadoc.path}</javadoc>
<sources>${project.build.directory}/android-sources.jar</sources>
</configuration>
</execution>
<execution>
<id>uiautomator-jar</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>${platform.uiautomator.groupid}</groupId>
<artifactId>${platform.uiautomator.artifactid}</artifactId>
<packaging>jar</packaging>
<version>${jar.version}</version>
<file>${uiautomator.path}</file>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<executions>
<execution>
<id>android-jar</id>
<phase>deploy</phase>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<groupId>${platform.android.groupid}</groupId>
<artifactId>${platform.android.artifactid}</artifactId>
<packaging>jar</packaging>
<version>${jar.version}</version>
<file>${jar.path}</file>
<url>${repo.url}</url>
<repositoryId>${repo.id}</repositoryId>
<javadoc>${javadoc.path}</javadoc>
<sources>${project.build.directory}/android-sources.jar</sources>
</configuration>
</execution>
<execution>
<id>uiautomator-jar</id>
<phase>deploy</phase>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<groupId>${platform.uiautomator.groupid}</groupId>
<artifactId>${platform.uiautomator.artifactid}</artifactId>
<packaging>jar</packaging>
<version>${jar.version}</version>
<file>${uiautomator.path}</file>
<url>${repo.url}</url>
<repositoryId>${repo.id}</repositoryId>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Loading