Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Webster2013-03-27 14:27:50 +0000
committerDani Megert2013-03-27 14:27:50 +0000
commitf8c10c8bd860e32193fe576f0bcb59ba2a238db9 (patch)
tree391b1bfb430cb3ab694624f9b949a28ca69686d0 /pom.xml
parent67e1ed78a51efe5d1182de6bb9f98631a3e9841c (diff)
downloadeclipse.platform.text-f8c10c8bd860e32193fe576f0bcb59ba2a238db9.tar.gz
eclipse.platform.text-f8c10c8bd860e32193fe576f0bcb59ba2a238db9.tar.xz
eclipse.platform.text-f8c10c8bd860e32193fe576f0bcb59ba2a238db9.zip
Fixed bug 403969: Update Platform Text with the new parent versionI20130402-0800
- excluded addition of forceQualifierUpdate.txt
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml22
1 files changed, 16 insertions, 6 deletions
diff --git a/pom.xml b/pom.xml
index 6ccd9180a3e..c500805ee8b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -9,28 +9,38 @@
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>
<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.platform.text</groupId>
<artifactId>eclipse.platform.text</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/platform/eclipse.platform.text.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.core.filebuffers.tests</module>
<module>org.eclipse.jface.text.tests</module>

Back to the top