2016-04-20 13:12:12 -07:00
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
<prerequisites>
|
|
|
|
|
<maven>3.0</maven>
|
|
|
|
|
</prerequisites>
|
|
|
|
|
|
|
|
|
|
<groupId>com.mobidevelop.robovm</groupId>
|
|
|
|
|
<artifactId>org.robovm.eclipse.parent</artifactId>
|
2016-08-21 13:06:21 +02:00
|
|
|
<version>2.2.1-SNAPSHOT</version>
|
2016-04-20 13:12:12 -07:00
|
|
|
<name>RoboVM for Eclipse</name>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
|
<url>https://github.com/mobidevelop/robovm</url>
|
|
|
|
|
<connection>scm:git:git://github.com/mobidevelop/robovm.git</connection>
|
|
|
|
|
<developerConnection>scm:git:git@github.com:mobidevelop/robovm.git</developerConnection>
|
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
|
<system>GitHub</system>
|
|
|
|
|
<url>https://github.com/mobidevelop/robovm/issues</url>
|
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
|
<license>
|
|
|
|
|
<name>GNU General Public License, version 2</name>
|
|
|
|
|
<url>http://www.gnu.org/licenses/gpl-2.0.html</url>
|
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
|
</license>
|
|
|
|
|
</licenses>
|
|
|
|
|
|
2016-05-06 16:23:40 +02:00
|
|
|
<properties>
|
2016-04-20 13:12:12 -07:00
|
|
|
<tycho.version>0.20.0</tycho.version>
|
|
|
|
|
<tycho-extras.version>0.20.0</tycho-extras.version>
|
|
|
|
|
<eclipse-site>http://download.eclipse.org/releases/indigo</eclipse-site>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>eclipse</id>
|
|
|
|
|
<url>${eclipse-site}</url>
|
|
|
|
|
<layout>p2</layout>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>sign</id>
|
|
|
|
|
<!-- To sign plug-ins and features, run: mvn -Psign -Dkeystore=<path>
|
|
|
|
|
-Dstorepass=*** -Dalias=<keyalias> clean install -->
|
|
|
|
|
<build>
|
|
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>sign</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<verify>true</verify>
|
|
|
|
|
<jarPath>${project.build.directory}/${project.build.finalName}.jar</jarPath>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
|
<version>2.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<remoteTagging>true</remoteTagging>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>2.3.2</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>1.6</source>
|
|
|
|
|
<target>1.6</target>
|
|
|
|
|
<debug>true</debug>
|
|
|
|
|
<optimize>true</optimize>
|
|
|
|
|
<showDeprecations>true</showDeprecations>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
|
|
|
<artifactId>tycho-maven-plugin</artifactId>
|
|
|
|
|
<version>${tycho.version}</version>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
</plugin>
|
2016-05-05 11:22:38 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
|
<version>2.8.2</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<skip>true</skip>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2016-04-20 13:12:12 -07:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
|
<module>ui</module>
|
|
|
|
|
<module>feature</module>
|
|
|
|
|
<module>update-site</module>
|
|
|
|
|
</modules>
|
|
|
|
|
</project>
|