Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2013-05-19 00:19:19 +0000
committerMatthias Sohn2013-05-19 00:44:53 +0000
commita199322e4a2755ac3451bb41efa6f37e408e47d9 (patch)
treeefa2312ade0d3d0bb543c4b8df71ec9512af6170 /pom.xml
parentfba31ed7bb17b78cfefc347c2a1ce5c1ea1dc937 (diff)
downloadegit-a199322e4a2755ac3451bb41efa6f37e408e47d9.tar.gz
egit-a199322e4a2755ac3451bb41efa6f37e408e47d9.tar.xz
egit-a199322e4a2755ac3451bb41efa6f37e408e47d9.zip
Move implementation of import feature to o.e.egit.ui bundle
Since the oldest release EGit will support with 3.0 is Juno we can move the implementation for importing a git repository from an installed bundle with a Eclipse-SourceReferences header in its manifest to the org.eclipse.egit.ui bundle and remove the indigo target platform. Change-Id: I7acaf5b26aa9f305d23f828459ecd272ed13fbdc Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml30
1 files changed, 2 insertions, 28 deletions
diff --git a/pom.xml b/pom.xml
index f74b6f529f..aac2485089 100644
--- a/pom.xml
+++ b/pom.xml
@@ -76,19 +76,6 @@
<profiles>
<profile>
- <id>platform-indigo</id>
- <activation>
- <property>
- <name>platform-version-name</name>
- <value>indigo</value>
- </property>
- </activation>
- <properties>
- <target-platform>egit-3.7</target-platform>
- <platform-version>[3.7,3.8)</platform-version>
- </properties>
- </profile>
- <profile>
<id>platform-juno</id>
<activation>
<property>
@@ -100,11 +87,6 @@
<target-platform>egit-4.2</target-platform>
<platform-version>[3.8,3.9)</platform-version>
</properties>
- <modules>
- <module>org.eclipse.egit.import</module>
- <module>org.eclipse.egit.import-feature</module>
- <module>org.eclipse.egit.repository</module>
- </modules>
</profile>
<profile>
<id>platform-kepler</id>
@@ -119,11 +101,6 @@
<target-platform>egit-4.3</target-platform>
<platform-version>[3.9,4.0)</platform-version>
</properties>
- <modules>
- <module>org.eclipse.egit.import</module>
- <module>org.eclipse.egit.import-feature</module>
- <module>org.eclipse.egit.repository</module>
- </modules>
</profile>
<profile>
<id>platform-kepler-staging</id>
@@ -137,11 +114,6 @@
<target-platform>egit-4.3-staging</target-platform>
<platform-version>[3.9,4.0)</platform-version>
</properties>
- <modules>
- <module>org.eclipse.egit.import</module>
- <module>org.eclipse.egit.import-feature</module>
- <module>org.eclipse.egit.repository</module>
- </modules>
</profile>
<profile>
<id>static-checks</id>
@@ -178,6 +150,8 @@
<module>org.eclipse.egit.mylyn.ui.test</module>
<module>org.eclipse.egit.source-feature</module>
+
+ <module>org.eclipse.egit.repository</module>
</modules>
<pluginRepositories>

Back to the top