From adbfeb7fd0e19cfab2b8bdd86c6efe4222a74a58 Mon Sep 17 00:00:00 2001 From: Luc Bourlier Date: Fri, 20 Jul 2012 16:18:06 +0200 Subject: [PATCH] Initial commit --- .gitignore | 1 + README.rst | 13 ++++ dev-scala-ide-2.0-scala-2.9/README.rst | 7 ++ dev-scala-ide-2.0-scala-2.9/pom.xml | 84 +++++++++++++++++++++ dev-scala-ide-2.0-scala-2.9/site.xml | 22 ++++++ dev-scala-ide-master-scala-2.9/README.rst | 7 ++ dev-scala-ide-master-scala-2.9/pom.xml | 84 +++++++++++++++++++++ dev-scala-ide-master-scala-2.9/site.xml | 22 ++++++ dev-scala-ide-master-scala-trunk/README.rst | 7 ++ dev-scala-ide-master-scala-trunk/pom.xml | 76 +++++++++++++++++++ dev-scala-ide-master-scala-trunk/site.xml | 15 ++++ stable-scala-ide-2.0-scala-2.9/README.rst | 6 ++ stable-scala-ide-2.0-scala-2.9/pom.xml | 76 +++++++++++++++++++ stable-scala-ide-2.0-scala-2.9/site.xml | 15 ++++ 14 files changed, 435 insertions(+) create mode 100644 .gitignore create mode 100644 README.rst create mode 100644 dev-scala-ide-2.0-scala-2.9/README.rst create mode 100644 dev-scala-ide-2.0-scala-2.9/pom.xml create mode 100644 dev-scala-ide-2.0-scala-2.9/site.xml create mode 100644 dev-scala-ide-master-scala-2.9/README.rst create mode 100644 dev-scala-ide-master-scala-2.9/pom.xml create mode 100644 dev-scala-ide-master-scala-2.9/site.xml create mode 100644 dev-scala-ide-master-scala-trunk/README.rst create mode 100644 dev-scala-ide-master-scala-trunk/pom.xml create mode 100644 dev-scala-ide-master-scala-trunk/site.xml create mode 100644 stable-scala-ide-2.0-scala-2.9/README.rst create mode 100644 stable-scala-ide-2.0-scala-2.9/pom.xml create mode 100644 stable-scala-ide-2.0-scala-2.9/site.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2f7896d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +target/ diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..13e81c8 --- /dev/null +++ b/README.rst @@ -0,0 +1,13 @@ +Scala IDE ecosystem builds +++++++++++++++++++++++++++ + +This is a set of maven projects used to create the Scala IDE ecosystem update sites. + +.. include:: stable-scala-ide-2.0-scala-2.9/README.rst + +.. include:: dev-scala-ide-2.0-scala-2.9/README.rst + +.. include:: dev-scala-ide-master-scala-2.9/README.rst + +.. include:: dev-scala-ide-master-scala-trunk/README.rst + diff --git a/dev-scala-ide-2.0-scala-2.9/README.rst b/dev-scala-ide-2.0-scala-2.9/README.rst new file mode 100644 index 0000000..1ecfcf8 --- /dev/null +++ b/dev-scala-ide-2.0-scala-2.9/README.rst @@ -0,0 +1,7 @@ +Scala IDE ecosystem stable (Scala IDE 2.0.2, Scala 2.9.2) +===================================================== + +Contains development version of plugins for Scala IDE 2.0.2 and Scala 2.9.2. + +* Scala IDE 2.0.2 +* scalatest for Scala IDE 0.1.x diff --git a/dev-scala-ide-2.0-scala-2.9/pom.xml b/dev-scala-ide-2.0-scala-2.9/pom.xml new file mode 100644 index 0000000..f464a53 --- /dev/null +++ b/dev-scala-ide-2.0-scala-2.9/pom.xml @@ -0,0 +1,84 @@ + + + 4.0.0 + + 3.0 + + org.scala-ide + org.scala-ide.ecosystem + 0.1.0-SNAPSHOT + Build project for the scalatest support in Scala IDE + eclipse-update-site + + + UTF-8 + 0.15.0 + + + http://download.eclipse.org/releases/indigo/ + http://download.eclipse.org/eclipse/updates/4.2milestones + http://download.eclipse.org/tools/ajdt/37/dev/update + http://download.scala-ide.org + + + indigo + ${repo.eclipse.indigo} + ${repo.ajdt.indigo} + + + ${repo.scala-ide.root}/releases-29/stable/site + ${repo.scala-ide.root}/scalatest/nightly-scala-ide-2.0-scala-2.9/site + + + + + eclipse.${eclipse.codename} + Eclipse p2 repository + p2 + ${repo.eclipse} + false + + + ajdt.${eclipse.codename} + AJDT for Eclipse p2 repository + p2 + ${repo.ajdt} + false + + + scala-ide + Scala IDE p2 repository + p2 + ${repo.scala-ide} + false + + + scala-ide.scalatest + Scalatest for Scala IDE p2 repository + p2 + ${repo.scala-ide.scalatest} + false + + + + + + + org.eclipse.tycho + tycho-maven-plugin + ${tycho.version} + true + + + org.eclipse.tycho + tycho-packaging-plugin + ${tycho.version} + + true + + + + + + diff --git a/dev-scala-ide-2.0-scala-2.9/site.xml b/dev-scala-ide-2.0-scala-2.9/site.xml new file mode 100644 index 0000000..27d1e20 --- /dev/null +++ b/dev-scala-ide-2.0-scala-2.9/site.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/dev-scala-ide-master-scala-2.9/README.rst b/dev-scala-ide-master-scala-2.9/README.rst new file mode 100644 index 0000000..4fb0da0 --- /dev/null +++ b/dev-scala-ide-master-scala-2.9/README.rst @@ -0,0 +1,7 @@ +Scala IDE ecosystem dev (Scala IDE 2.1.x, Scala 2.9.x) +===================================================== + +Contains development version of plugins for Scala IDE 2.1.x and Scala 2.9.x. + +* Scala IDE 2.1.x +* scalatest for Scala IDE 0.1.x diff --git a/dev-scala-ide-master-scala-2.9/pom.xml b/dev-scala-ide-master-scala-2.9/pom.xml new file mode 100644 index 0000000..3904de1 --- /dev/null +++ b/dev-scala-ide-master-scala-2.9/pom.xml @@ -0,0 +1,84 @@ + + + 4.0.0 + + 3.0 + + org.scala-ide + org.scala-ide.ecosystem + 0.1.0-SNAPSHOT + Build project for the scalatest support in Scala IDE + eclipse-update-site + + + UTF-8 + 0.15.0 + + + http://download.eclipse.org/releases/indigo/ + http://download.eclipse.org/eclipse/updates/4.2milestones + http://download.eclipse.org/tools/ajdt/37/dev/update + http://download.scala-ide.org + + + indigo + ${repo.eclipse.indigo} + ${repo.ajdt.indigo} + + + ${repo.scala-ide.root}/nightly-update-master-29x + ${repo.scala-ide.root}/scalatest/nightly-scala-ide-master-scala-2.9/site + + + + + eclipse.${eclipse.codename} + Eclipse p2 repository + p2 + ${repo.eclipse} + false + + + ajdt.${eclipse.codename} + AJDT for Eclipse p2 repository + p2 + ${repo.ajdt} + false + + + scala-ide + Scala IDE p2 repository + p2 + ${repo.scala-ide} + false + + + scala-ide.scalatest + Scalatest for Scala IDE p2 repository + p2 + ${repo.scala-ide.scalatest} + false + + + + + + + org.eclipse.tycho + tycho-maven-plugin + ${tycho.version} + true + + + org.eclipse.tycho + tycho-packaging-plugin + ${tycho.version} + + true + + + + + + diff --git a/dev-scala-ide-master-scala-2.9/site.xml b/dev-scala-ide-master-scala-2.9/site.xml new file mode 100644 index 0000000..15e8384 --- /dev/null +++ b/dev-scala-ide-master-scala-2.9/site.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/dev-scala-ide-master-scala-trunk/README.rst b/dev-scala-ide-master-scala-trunk/README.rst new file mode 100644 index 0000000..4fb0da0 --- /dev/null +++ b/dev-scala-ide-master-scala-trunk/README.rst @@ -0,0 +1,7 @@ +Scala IDE ecosystem dev (Scala IDE 2.1.x, Scala 2.9.x) +===================================================== + +Contains development version of plugins for Scala IDE 2.1.x and Scala 2.9.x. + +* Scala IDE 2.1.x +* scalatest for Scala IDE 0.1.x diff --git a/dev-scala-ide-master-scala-trunk/pom.xml b/dev-scala-ide-master-scala-trunk/pom.xml new file mode 100644 index 0000000..c4d5e1a --- /dev/null +++ b/dev-scala-ide-master-scala-trunk/pom.xml @@ -0,0 +1,76 @@ + + + 4.0.0 + + 3.0 + + org.scala-ide + org.scala-ide.ecosystem + 0.1.0-SNAPSHOT + Build project for the scalatest support in Scala IDE + eclipse-update-site + + + UTF-8 + 0.15.0 + + + http://download.eclipse.org/releases/indigo/ + http://download.eclipse.org/eclipse/updates/4.2milestones + http://download.eclipse.org/tools/ajdt/37/dev/update + http://download.scala-ide.org + + + indigo + ${repo.eclipse.indigo} + ${repo.ajdt.indigo} + + + ${repo.scala-ide.root}/nightly-update-master-trunk + + + + + eclipse.${eclipse.codename} + Eclipse p2 repository + p2 + ${repo.eclipse} + false + + + ajdt.${eclipse.codename} + AJDT for Eclipse p2 repository + p2 + ${repo.ajdt} + false + + + scala-ide + Scala IDE p2 repository + p2 + ${repo.scala-ide} + false + + + + + + + org.eclipse.tycho + tycho-maven-plugin + ${tycho.version} + true + + + org.eclipse.tycho + tycho-packaging-plugin + ${tycho.version} + + true + + + + + + diff --git a/dev-scala-ide-master-scala-trunk/site.xml b/dev-scala-ide-master-scala-trunk/site.xml new file mode 100644 index 0000000..a4e0ca6 --- /dev/null +++ b/dev-scala-ide-master-scala-trunk/site.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/stable-scala-ide-2.0-scala-2.9/README.rst b/stable-scala-ide-2.0-scala-2.9/README.rst new file mode 100644 index 0000000..792b663 --- /dev/null +++ b/stable-scala-ide-2.0-scala-2.9/README.rst @@ -0,0 +1,6 @@ +Scala IDE ecosystem stable (Scala IDE 2.0, Scala 2.9) +===================================================== + +Contains stable version of plugins for Scala IDE 2.0.2 and Scala 2.9. + +* Scala IDE 2.0.2 diff --git a/stable-scala-ide-2.0-scala-2.9/pom.xml b/stable-scala-ide-2.0-scala-2.9/pom.xml new file mode 100644 index 0000000..c95b42e --- /dev/null +++ b/stable-scala-ide-2.0-scala-2.9/pom.xml @@ -0,0 +1,76 @@ + + + 4.0.0 + + 3.0 + + org.scala-ide + org.scala-ide.ecosystem + 0.1.0-SNAPSHOT + Build project for the scalatest support in Scala IDE + eclipse-update-site + + + UTF-8 + 0.15.0 + + + http://download.eclipse.org/releases/indigo/ + http://download.eclipse.org/eclipse/updates/4.2milestones + http://download.eclipse.org/tools/ajdt/37/dev/update + http://download.scala-ide.org + + + indigo + ${repo.eclipse.indigo} + ${repo.ajdt.indigo} + + + ${repo.scala-ide.root}/releases-29/stable/site + + + + + eclipse.${eclipse.codename} + Eclipse p2 repository + p2 + ${repo.eclipse} + false + + + ajdt.${eclipse.codename} + AJDT for Eclipse p2 repository + p2 + ${repo.ajdt} + false + + + scala-ide + Scala IDE p2 repository + p2 + ${repo.scala-ide} + false + + + + + + + org.eclipse.tycho + tycho-maven-plugin + ${tycho.version} + true + + + org.eclipse.tycho + tycho-packaging-plugin + ${tycho.version} + + true + + + + + + diff --git a/stable-scala-ide-2.0-scala-2.9/site.xml b/stable-scala-ide-2.0-scala-2.9/site.xml new file mode 100644 index 0000000..29717c1 --- /dev/null +++ b/stable-scala-ide-2.0-scala-2.9/site.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + +