Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Fedorenko2009-12-01 19:01:13 +0000
committerIgor Fedorenko2009-12-19 21:24:08 +0000
commit10564f315f2e755302c24af4064281e2ed0f2711 (patch)
treeed92bf4cf30a70382bbe1a32b6f6f119854736af /org.eclipse.egit-updatesite
parent9fd991fcc6c8cde8eda431cfd8a87fa7ff0637f6 (diff)
downloadegit-10564f315f2e755302c24af4064281e2ed0f2711.tar.gz
egit-10564f315f2e755302c24af4064281e2ed0f2711.tar.xz
egit-10564f315f2e755302c24af4064281e2ed0f2711.zip
Flipped EGit to manifest-first maven-3/tycho build
New org.sonatype.tycho groupId https://issues.sonatype.org/browse/TYCHO-312 Workaround for https://issues.sonatype.org/browse/TYCHO-168 Removed checkNotNested. Conventional maven project layout results in the following repository nesting parallelip-egit <= egit source tree root /.git /org.eclipse.egit.core.test /target /work /data <= test workspace /.git /.metadata /Project-1 Disable checkNotNested as a short term solution, but in the long term we need to reintroduce this check with mechanisms like Git's GIT_CEILING_DIRECTORIES to make sure it does not produce false positive during maven build. Change-Id: Idec24de111aa21a022654c443376e42ae6caa7cc Signed-off-by: Igor Fedorenko <igor@ifedorenko.com>
Diffstat (limited to 'org.eclipse.egit-updatesite')
-rw-r--r--org.eclipse.egit-updatesite/pom.xml30
-rw-r--r--org.eclipse.egit-updatesite/site.xml4
2 files changed, 32 insertions, 2 deletions
diff --git a/org.eclipse.egit-updatesite/pom.xml b/org.eclipse.egit-updatesite/pom.xml
new file mode 100644
index 0000000000..a12a5879c7
--- /dev/null
+++ b/org.eclipse.egit-updatesite/pom.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (C) 2009, Igor Fedorenko <igor@ifedorenko.com>
+
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+-->
+
+<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.eclipse.egit</groupId>
+ <artifactId>egit-parent</artifactId>
+ <version>0.6.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.egit-updatesite</artifactId>
+ <packaging>eclipse-update-site</packaging>
+
+ <name>Eclipse Git Plugin Update Site</name>
+
+ <!-- see http://issues.sonatype.org/browse/TYCHO-313 -->
+ <version>0.6.0</version>
+
+</project>
diff --git a/org.eclipse.egit-updatesite/site.xml b/org.eclipse.egit-updatesite/site.xml
index be43f16d6f..d9e4adfb48 100644
--- a/org.eclipse.egit-updatesite/site.xml
+++ b/org.eclipse.egit-updatesite/site.xml
@@ -3,10 +3,10 @@
<description url="Eclipse Git Plugin">
This is a pure Java implementation of the Git version control system. The native Git version is also required in this version,
</description>
- <feature url="features/org.eclipse.egit_0.6.0.qualifier.jar" id="org.eclipse.egit" version="0.6.0.qualifier" patch="true">
+ <feature url="features/org.eclipse.egit_0.0.0.qualifier.jar" id="org.eclipse.egit" version="0.0.0" patch="true">
<category name="Eclipse Git Plugin (Incubation)"/>
</feature>
- <feature url="features/org.eclipse.jgit_0.6.0.qualifier.jar" id="org.eclipse.jgit" version="0.6.0.qualifier">
+ <feature url="features/org.eclipse.jgit_0.0.0.qualifier.jar" id="org.eclipse.jgit" version="0.0.0">
<category name="Eclipse Git Plugin (Incubation)"/>
</feature>
<category-def name="Eclipse Git Plugin (Incubation)" label="Eclipse Git Plugin (Incubation)">

Back to the top