Home | History | Annotate | Download | only in gdx-backend-android
      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <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">
      3   <modelVersion>4.0.0</modelVersion>
      4   <parent>
      5     <groupId>com.badlogicgames.gdx</groupId>
      6     <artifactId>gdx-parent</artifactId>
      7     <version>1.9.3</version>
      8     <relativePath>../../pom.xml</relativePath>
      9   </parent>
     10 
     11   <artifactId>gdx-backend-android</artifactId>
     12   <packaging>jar</packaging>
     13   <name>libGDX Android Backend</name>
     14   
     15   <dependencies>
     16     <dependency>
     17       <groupId>${project.groupId}</groupId>
     18       <artifactId>gdx</artifactId>
     19       <version>${project.version}</version>
     20     </dependency>
     21 
     22     <dependency>
     23       <groupId>com.google.android</groupId>
     24       <artifactId>android</artifactId>
     25       <version>${android.version}</version>
     26       <scope>system</scope>
     27       <systemPath>${basedir}/libs/android-4.4.jar</systemPath>
     28       <optional>true</optional>
     29     </dependency>
     30     
     31     <dependency>
     32 	    <groupId>com.android.support</groupId>
     33 	    <artifactId>support-v4</artifactId>
     34 	    <version>19.0.1</version>
     35 	    <scope>system</scope>
     36 		<systemPath>${basedir}/libs/support-v4-19.0.1.jar</systemPath>
     37 		<optional>true</optional>
     38 	  </dependency>
     39   </dependencies>
     40 
     41   <build>
     42     <sourceDirectory>src</sourceDirectory>
     43     <plugins>
     44         <plugin>
     45             <groupId>org.apache.maven.plugins</groupId>
     46             <artifactId>maven-source-plugin</artifactId>
     47             <executions>
     48                 <execution>
     49                     <id>attach-sources</id>
     50                     <phase>generate-resources</phase>
     51                     <goals>
     52                         <goal>jar-no-fork</goal>
     53                     </goals>
     54                 </execution>
     55             </executions>
     56         </plugin>
     57     </plugins>
     58   </build>
     59 </project>
     60