OSDN Git Service

added robovm poms
authorbadlogic <badlogicgames@gmail.com>
Sun, 29 Sep 2013 20:55:52 +0000 (22:55 +0200)
committerbadlogic <badlogicgames@gmail.com>
Sun, 29 Sep 2013 20:55:52 +0000 (22:55 +0200)
backends/gdx-backend-robovm/pom.xml [new file with mode: 0644]
pom.xml

diff --git a/backends/gdx-backend-robovm/pom.xml b/backends/gdx-backend-robovm/pom.xml
new file mode 100644 (file)
index 0000000..a5814f1
--- /dev/null
@@ -0,0 +1,44 @@
+<?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>com.badlogicgames.gdx</groupId>
+    <artifactId>gdx-parent</artifactId>
+    <version>0.9.9-SNAPSHOT</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+
+  <artifactId>gdx-backend-robovm</artifactId>
+  <packaging>jar</packaging>
+  <name>libGDX iOS RoboVM Backend</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>gdx</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+      
+      <dependency>
+          <groupId>org.robovm</groupId>
+          <artifactId>robovm-cocoatouch</artifactId>
+          <version>0.0.5</version>
+      </dependency>
+      
+      <dependency>
+          <groupId>org.robovm</groupId>
+          <artifactId>robovm-objc</artifactId>
+          <version>0.0.5</version>
+      </dependency>
+      
+      <dependency>
+          <groupId>org.robovm</groupId>
+          <artifactId>robovm-rt</artifactId>
+          <version>0.0.5</version>
+      </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>src</sourceDirectory>
+  </build>
+</project>
diff --git a/pom.xml b/pom.xml
index 2ebf02f..c5c586d 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -54,6 +54,7 @@
     <module>gdx/jni/maven</module>
     <module>backends/gdx-openal</module>
     <module>backends/gdx-backend-android</module>
+    <module>backends/gdx-backend-robovm</module>
     <module>backends/gdx-backend-lwjgl</module>
     <module>backends/gdx-backends-gwt</module>
     <module>extensions/gdx-tools</module>