forked from MobiVM/robovm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
44 lines (36 loc) · 1.42 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0"?>
<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.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.mobidevelop.robovm</groupId>
<version>2.3.1-SNAPSHOT</version>
<artifactId>robovm-parent</artifactId>
<name>RoboVM Parent</name>
<packaging>pom</packaging>
<url>http://github.com/mobidevelop/robovm</url>
<description>
The RoboVM compiler translates Java bytecode into native ARM or x86 code. Apps run directly on the CPU. No interpreter or virtual machine involved.
</description>
<inceptionYear>2012</inceptionYear>
<issueManagement>
<url>https://github.com/mobidevelop/robovm</url>
</issueManagement>
<scm>
<url>https://github.com/mobidevelop/robovm</url>
<connection>scm:git:https://github.com/mobidevelop/robovm.git</connection>
<developerConnection>scm:git:https://github.com/mobidevelop/robovm.git</developerConnection>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>compiler</module>
<module>dist</module>
<module>plugins/templates</module>
<module>plugins/maven</module>
</modules>
</project>