Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJayaprakash Arthanareeswaran2013-03-27 17:25:52 +0000
committerJayaprakash Arthanareeswaran2013-04-03 09:03:38 +0000
commitab4eeab7e2b3d90c507a74c96493ee6e4e2258d6 (patch)
tree3eccd8886d687d821e8644363b77b8570c4bf661 /pom.xml
parent2ea28b71481adeeaf9e7adba83fdf2894ac85ffd (diff)
downloadeclipse.jdt.core-ab4eeab7e2b3d90c507a74c96493ee6e4e2258d6.tar.gz
eclipse.jdt.core-ab4eeab7e2b3d90c507a74c96493ee6e4e2258d6.tar.xz
eclipse.jdt.core-ab4eeab7e2b3d90c507a74c96493ee6e4e2258d6.zip
Fix for bug 403958 - Update JDT core parent version
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml21
1 files changed, 16 insertions, 5 deletions
diff --git a/pom.xml b/pom.xml
index 42fb290ac0..57bb9291b0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,27 +10,38 @@
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>
<groupId>org.eclipse</groupId>
<artifactId>eclipse-platform-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>4.3.0-SNAPSHOT</version>
<relativePath>../eclipse-platform-parent</relativePath>
</parent>
<groupId>eclipse.jdt.core</groupId>
<artifactId>eclipse.jdt.core</artifactId>
- <version>3.8.0-SNAPSHOT</version>
+ <version>4.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/jdt/eclipse.jdt.core.git</tycho.scmUrl>
</properties>
+ <repositories>
+ <repository>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <id>eclipse-hosted</id>
+ <url>https://repo.eclipse.org/content/repositories/eclipse/</url>
+ </repository>
+ </repositories>
+
<modules>
<module>org.eclipse.jdt.annotation</module>
<module>org.eclipse.jdt.compiler.tool</module>

Back to the top