• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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-moe</artifactId>
12  <packaging>jar</packaging>
13  <name>libGDX iOS Multi-OS Engine 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.intel.moe</groupId>
24      <artifactId>moe-core</artifactId>
25      <version>${moe.version}</version>
26      <scope>system</scope>
27      <systemPath>${basedir}/libs/intel-moe-core.jar</systemPath>
28      <optional>true</optional>
29    </dependency>
30
31    <dependency>
32      <groupId>com.intel.moe</groupId>
33      <artifactId>moe-ios</artifactId>
34      <version>${moe.version}</version>
35      <scope>system</scope>
36      <systemPath>${basedir}/libs/intel-moe-ios.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