Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.executable/pom.xml')
-rw-r--r--bundles/org.eclipse.equinox.executable/pom.xml38
1 files changed, 16 insertions, 22 deletions
diff --git a/bundles/org.eclipse.equinox.executable/pom.xml b/bundles/org.eclipse.equinox.executable/pom.xml
index 255b14849..8b1ae141b 100644
--- a/bundles/org.eclipse.equinox.executable/pom.xml
+++ b/bundles/org.eclipse.equinox.executable/pom.xml
@@ -9,15 +9,12 @@
Contributors:
Igor Fedorenko - initial implementation
-->
-
-<project
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
- xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<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>
<artifactId>rt.equinox.framework</artifactId>
<groupId>org.eclipse.equinox.framework</groupId>
- <version>3.8.0-SNAPSHOT</version>
+ <version>4.3.0-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<groupId>org.eclipse.equinox</groupId>
@@ -45,7 +42,7 @@
<phase>generate-resources</phase>
<configuration>
<target>
- <ant antfile="build.xml" dir="library/gtk/" target="build_eclipse" />
+ <ant antfile="build.xml" dir="library/gtk/" target="build_eclipse"/>
</target>
</configuration>
<goals>
@@ -98,7 +95,7 @@
<phase>generate-resources</phase>
<configuration>
<target>
- <ant antfile="build.xml" dir="library/gtk/" target="build_eclipse" />
+ <ant antfile="build.xml" dir="library/gtk/" target="build_eclipse"/>
</target>
</configuration>
<goals>
@@ -151,7 +148,7 @@
<phase>generate-resources</phase>
<configuration>
<target>
- <ant antfile="build.xml" dir="library/win32/" target="build_eclipse" />
+ <ant antfile="build.xml" dir="library/win32/" target="build_eclipse"/>
</target>
</configuration>
<goals>
@@ -204,7 +201,7 @@
<phase>generate-resources</phase>
<configuration>
<target>
- <ant antfile="build.xml" dir="library/win32/" target="build_eclipse" />
+ <ant antfile="build.xml" dir="library/win32/" target="build_eclipse"/>
</target>
</configuration>
<goals>
@@ -257,7 +254,7 @@
<phase>generate-resources</phase>
<configuration>
<target>
- <ant antfile="build.xml" dir="library/carbon/" target="build_eclipse" />
+ <ant antfile="build.xml" dir="library/carbon/" target="build_eclipse"/>
</target>
</configuration>
<goals>
@@ -315,32 +312,29 @@
<!-- If local binaries had been built, copy will not overwrite
them -->
<copy todir="bin">
- <fileset
- dir="../../../rt.equinox.binaries/org.eclipse.equinox.executable/bin/">
- <include name="**/*" />
+ <fileset dir="../../../rt.equinox.binaries/org.eclipse.equinox.executable/bin/">
+ <include name="**/*"/>
</fileset>
</copy>
<!-- Things below were copied from custombuildCallbacks.xml, as
Tycho does not support that -->
<copy includeEmptyDirs="false" todir="tempBin">
- <fileset dir="bin" />
+ <fileset dir="bin"/>
</copy>
- <delete dir="bin" />
+ <delete dir="bin"/>
<move todir="bin">
- <fileset dir="tempBin" />
+ <fileset dir="tempBin"/>
</move>
<!-- rename eclipse launchers to "launcher" -->
<move todir="bin" verbose="true">
- <fileset dir="bin" />
- <regexpmapper from="^(.*[/\\])eclipse(.exe)?$"
- to="\1launcher\2" />
+ <fileset dir="bin"/>
+ <regexpmapper from="^(.*[/\\])eclipse(.exe)?$" to="\1launcher\2"/>
</move>
<move todir="contributed" verbose="true">
- <fileset dir="contributed" />
- <regexpmapper from="^(.*[/\\])eclipse(.exe)?$"
- to="\1launcher\2" />
+ <fileset dir="contributed"/>
+ <regexpmapper from="^(.*[/\\])eclipse(.exe)?$" to="\1launcher\2"/>
</move>
</target>
</configuration>

Back to the top