Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogdan Gheorghe2012-10-17 20:25:19 +0000
committerBogdan Gheorghe2012-10-17 20:25:19 +0000
commit424a396d56adcad17eafe10fba71d9100f113ab7 (patch)
treeae0f9150327a3a28e48674183fef777d11092d5b
parent9994d5f88b5a66bd7c988846c0fc4973a482d429 (diff)
downloadeclipse.platform.swt-424a396d56adcad17eafe10fba71d9100f113ab7.tar.gz
eclipse.platform.swt-424a396d56adcad17eafe10fba71d9100f113ab7.tar.xz
eclipse.platform.swt-424a396d56adcad17eafe10fba71d9100f113ab7.zip
Bug 391995 - Add tycho.scmUrl for eclipse.platform.swt.git
-rw-r--r--pom.xml92
1 files changed, 48 insertions, 44 deletions
diff --git a/pom.xml b/pom.xml
index 8f53582154..00237862e1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,44 +1,48 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Copyright (c) 2012 Eclipse Foundation and others.
- All rights reserved. This program and the accompanying materials
- are made available under the terms of the Eclipse Distribution License v1.0
- which accompanies this distribution, and is available at
- http://www.eclipse.org/org/documents/edl-v10.php
-
- 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">
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.eclipse</groupId>
- <artifactId>eclipse-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <relativePath>../eclipse-parent</relativePath>
- </parent>
-
- <groupId>eclipse.platform.swt</groupId>
- <artifactId>eclipse.platform.swt</artifactId>
- <version>3.8.0-SNAPSHOT</version>
- <packaging>pom</packaging>
-
- <modules>
- <module>bundles/org.eclipse.swt</module>
- <module>bundles/org.eclipse.swt.opengl</module>
- <module>bundles/org.eclipse.swt.tools</module>
- <module>examples/org.eclipse.swt.examples</module>
- <module>examples/org.eclipse.swt.examples.browser</module>
- <module>examples/org.eclipse.swt.examples.browser.demos</module>
- <module>examples/org.eclipse.swt.examples.controls</module>
- <module>examples/org.eclipse.swt.examples.launcher</module>
- <module>examples/org.eclipse.swt.examples.layouts</module>
- <module>examples/org.eclipse.swt.examples.ole.win32</module>
- <module>examples/org.eclipse.swt.examples.paint</module>
- <module>tests/org.eclipse.swt.tests</module>
- </modules>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012 Eclipse Foundation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ 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">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse</groupId>
+ <artifactId>eclipse-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <relativePath>../eclipse-parent</relativePath>
+ </parent>
+
+ <groupId>eclipse.platform.swt</groupId>
+ <artifactId>eclipse.platform.swt</artifactId>
+ <version>3.8.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <properties>
+ <tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/platform/eclipse.platform.swt.git</tycho.scmUrl>
+ </properties>
+
+ <modules>
+ <module>bundles/org.eclipse.swt</module>
+ <module>bundles/org.eclipse.swt.opengl</module>
+ <module>bundles/org.eclipse.swt.tools</module>
+ <module>examples/org.eclipse.swt.examples</module>
+ <module>examples/org.eclipse.swt.examples.browser</module>
+ <module>examples/org.eclipse.swt.examples.browser.demos</module>
+ <module>examples/org.eclipse.swt.examples.controls</module>
+ <module>examples/org.eclipse.swt.examples.launcher</module>
+ <module>examples/org.eclipse.swt.examples.layouts</module>
+ <module>examples/org.eclipse.swt.examples.ole.win32</module>
+ <module>examples/org.eclipse.swt.examples.paint</module>
+ <module>tests/org.eclipse.swt.tests</module>
+ </modules>
+</project>

Back to the top