mirror of https://github.com/Minres/RDL-Editor.git
143 lines
6.2 KiB
XML
143 lines
6.2 KiB
XML
<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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.minres.rdl</groupId>
|
|
<artifactId>com.minres.rdl.parent</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>com.minres.rdl.repository</artifactId>
|
|
<version>1.2.0-SNAPSHOT</version>
|
|
<packaging>eclipse-repository</packaging>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
<version>1.0.0</version>
|
|
<configuration>
|
|
<lifecycleMappingMetadata>
|
|
<pluginExecutions>
|
|
<pluginExecution>
|
|
<pluginExecutionFilter>
|
|
<groupId>
|
|
org.apache.maven.plugins
|
|
</groupId>
|
|
<artifactId>
|
|
maven-clean-plugin
|
|
</artifactId>
|
|
<versionRange>
|
|
[2.5,)
|
|
</versionRange>
|
|
<goals>
|
|
<goal>clean</goal>
|
|
</goals>
|
|
</pluginExecutionFilter>
|
|
<action>
|
|
<ignore></ignore>
|
|
</action>
|
|
</pluginExecution>
|
|
</pluginExecutions>
|
|
</lifecycleMappingMetadata>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<!-- Activate this profile to perform the release to Bintray -->
|
|
<id>release-composite</id>
|
|
<activation>
|
|
<activeByDefault>false</activeByDefault>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>3.0.0</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<executable>bash</executable>
|
|
<!-- optional -->
|
|
<workingDirectory>${software.download.area}</workingDirectory>
|
|
<arguments>
|
|
<argument>-c</argument>
|
|
<argument>if [ -d RDL-Editor-GHP ]; then cd RDL-Editor-GHP; git pull; else git clone -v --branch gh-pages https://github.com/Minres/RDL-Editor.git RDL-Editor-GHP; fi</argument>
|
|
</arguments>
|
|
<environmentVariables>
|
|
<LANG>en_US</LANG>
|
|
</environmentVariables>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.eclipse.tycho.extras</groupId>
|
|
<artifactId>tycho-eclipserun-plugin</artifactId>
|
|
<version>${tycho-version}</version>
|
|
<configuration>
|
|
<!-- IMPORTANT: DO NOT split the arg line -->
|
|
<appArgLine>-application org.eclipse.ant.core.antRunner -buildfile packaging-p2-composite.ant p2.composite.add -Dsite.label="RDL-Editor Software Repository" -Dproject.build.directory=${project.build.directory} -DunqualifiedVersion=${unqualifiedVersion} -Dsoftware.download.area="${software.download.area}/RDL-Editor-GHP/repository"</appArgLine>
|
|
<repositories>
|
|
<repository>
|
|
<id>2021-03</id>
|
|
<layout>p2</layout>
|
|
<url>http://download.eclipse.org/releases/2021-03/</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<artifactId>org.eclipse.ant.core</artifactId>
|
|
<type>eclipse-plugin</type>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>org.apache.ant</artifactId>
|
|
<type>eclipse-plugin</type>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>org.eclipse.equinox.p2.repository.tools</artifactId>
|
|
<type>eclipse-plugin</type>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>org.eclipse.equinox.p2.core.feature</artifactId>
|
|
<type>eclipse-feature</type>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>org.eclipse.equinox.p2.extras.feature</artifactId>
|
|
<type>eclipse-feature</type>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>org.eclipse.equinox.ds</artifactId>
|
|
<type>eclipse-plugin</type>
|
|
</dependency>
|
|
</dependencies>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>add-p2-composite-repository</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>eclipse-run</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<dependencies>
|
|
</dependencies>
|
|
</project>
|