forked from scala-ide/ecosystem
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Luc Bourlier
committed
Jul 20, 2012
0 parents
commit adbfeb7
Showing
14 changed files
with
435 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
target/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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> | ||
<prerequisites> | ||
<maven>3.0</maven> | ||
</prerequisites> | ||
<groupId>org.scala-ide</groupId> | ||
<artifactId>org.scala-ide.ecosystem</artifactId> | ||
<version>0.1.0-SNAPSHOT</version> | ||
<description>Build project for the scalatest support in Scala IDE</description> | ||
<packaging>eclipse-update-site</packaging> | ||
|
||
<properties> | ||
<encoding>UTF-8</encoding> | ||
<tycho.version>0.15.0</tycho.version> | ||
|
||
<!-- p2 repositories location --> | ||
<repo.eclipse.indigo>http://download.eclipse.org/releases/indigo/</repo.eclipse.indigo> | ||
<repo.eclipse.juno>http://download.eclipse.org/eclipse/updates/4.2milestones</repo.eclipse.juno> | ||
<repo.ajdt.indigo>http://download.eclipse.org/tools/ajdt/37/dev/update</repo.ajdt.indigo> | ||
<repo.scala-ide.root>http://download.scala-ide.org</repo.scala-ide.root> | ||
|
||
<!-- dependencies repos --> | ||
<eclipse.codename>indigo</eclipse.codename> | ||
<repo.eclipse>${repo.eclipse.indigo}</repo.eclipse> | ||
<repo.ajdt>${repo.ajdt.indigo}</repo.ajdt> | ||
|
||
<!-- plugin repos --> | ||
<repo.scala-ide>${repo.scala-ide.root}/releases-29/stable/site</repo.scala-ide> | ||
<repo.scala-ide.scalatest>${repo.scala-ide.root}/scalatest/nightly-scala-ide-2.0-scala-2.9/site</repo.scala-ide.scalatest> | ||
</properties> | ||
|
||
<repositories> | ||
<repository> | ||
<id>eclipse.${eclipse.codename}</id> | ||
<name>Eclipse p2 repository</name> | ||
<layout>p2</layout> | ||
<url>${repo.eclipse}</url> | ||
<snapshots><enabled>false</enabled></snapshots> | ||
</repository> | ||
<repository> | ||
<id>ajdt.${eclipse.codename}</id> | ||
<name>AJDT for Eclipse p2 repository</name> | ||
<layout>p2</layout> | ||
<url>${repo.ajdt}</url> | ||
<snapshots><enabled>false</enabled></snapshots> | ||
</repository> | ||
<repository> | ||
<id>scala-ide</id> | ||
<name>Scala IDE p2 repository</name> | ||
<layout>p2</layout> | ||
<url>${repo.scala-ide}</url> | ||
<snapshots><enabled>false</enabled></snapshots> | ||
</repository> | ||
<repository> | ||
<id>scala-ide.scalatest</id> | ||
<name>Scalatest for Scala IDE p2 repository</name> | ||
<layout>p2</layout> | ||
<url>${repo.scala-ide.scalatest}</url> | ||
<snapshots><enabled>false</enabled></snapshots> | ||
</repository> | ||
</repositories> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-maven-plugin</artifactId> | ||
<version>${tycho.version}</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-packaging-plugin</artifactId> | ||
<version>${tycho.version}</version> | ||
<configuration> | ||
<archiveSite>true</archiveSite> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<site> | ||
<feature url="features/org.scala-ide.sdt.feature_0.0.0.jar" id="org.scala-ide.sdt.feature" version="2.0.2"> | ||
<category name="sdt"/> | ||
</feature> | ||
<feature url="features/org.scala-ide.sdt.source.feature_0.0.0.jar" id="org.scala-ide.sdt.source.feature" version="2.0.2"> | ||
<category name="source"/> | ||
</feature> | ||
<feature url="features/org.scala-ide.sdt.dev.feature_0.0.0.jar" id="org.scala-ide.sdt.dev.feature" version="2.0.2"> | ||
<category name="dev"/> | ||
</feature> | ||
<feature url="features/org.scala-ide.sdt.scalatest.feature_0.0.0.jar" id="org.scala-ide.sdt.scalatest.feature" version="0.1.0"> | ||
<category name="sdt.scalatest"/> | ||
</feature> | ||
<feature url="features/org.scala-ide.sdt.scalatest.source.feature_0.0.0.jar" id="org.scala-ide.sdt.scalatest.source.feature" version="0.1.0"> | ||
<category name="source"/> | ||
</feature> | ||
<category-def name="sdt" label="Scala IDE for Eclipse"/> | ||
<category-def name="sdt.scalatest" label="ScalaTest for Scala IDE"/> | ||
<category-def name="dev" label="Scala IDE for Eclipse development support"/> | ||
<category-def name="source" label="Sources"/> | ||
</site> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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> | ||
<prerequisites> | ||
<maven>3.0</maven> | ||
</prerequisites> | ||
<groupId>org.scala-ide</groupId> | ||
<artifactId>org.scala-ide.ecosystem</artifactId> | ||
<version>0.1.0-SNAPSHOT</version> | ||
<description>Build project for the scalatest support in Scala IDE</description> | ||
<packaging>eclipse-update-site</packaging> | ||
|
||
<properties> | ||
<encoding>UTF-8</encoding> | ||
<tycho.version>0.15.0</tycho.version> | ||
|
||
<!-- p2 repositories location --> | ||
<repo.eclipse.indigo>http://download.eclipse.org/releases/indigo/</repo.eclipse.indigo> | ||
<repo.eclipse.juno>http://download.eclipse.org/eclipse/updates/4.2milestones</repo.eclipse.juno> | ||
<repo.ajdt.indigo>http://download.eclipse.org/tools/ajdt/37/dev/update</repo.ajdt.indigo> | ||
<repo.scala-ide.root>http://download.scala-ide.org</repo.scala-ide.root> | ||
|
||
<!-- dependencies repos --> | ||
<eclipse.codename>indigo</eclipse.codename> | ||
<repo.eclipse>${repo.eclipse.indigo}</repo.eclipse> | ||
<repo.ajdt>${repo.ajdt.indigo}</repo.ajdt> | ||
|
||
<!-- plugin repos --> | ||
<repo.scala-ide>${repo.scala-ide.root}/nightly-update-master-29x</repo.scala-ide> | ||
<repo.scala-ide.scalatest>${repo.scala-ide.root}/scalatest/nightly-scala-ide-master-scala-2.9/site</repo.scala-ide.scalatest> | ||
</properties> | ||
|
||
<repositories> | ||
<repository> | ||
<id>eclipse.${eclipse.codename}</id> | ||
<name>Eclipse p2 repository</name> | ||
<layout>p2</layout> | ||
<url>${repo.eclipse}</url> | ||
<snapshots><enabled>false</enabled></snapshots> | ||
</repository> | ||
<repository> | ||
<id>ajdt.${eclipse.codename}</id> | ||
<name>AJDT for Eclipse p2 repository</name> | ||
<layout>p2</layout> | ||
<url>${repo.ajdt}</url> | ||
<snapshots><enabled>false</enabled></snapshots> | ||
</repository> | ||
<repository> | ||
<id>scala-ide</id> | ||
<name>Scala IDE p2 repository</name> | ||
<layout>p2</layout> | ||
<url>${repo.scala-ide}</url> | ||
<snapshots><enabled>false</enabled></snapshots> | ||
</repository> | ||
<repository> | ||
<id>scala-ide.scalatest</id> | ||
<name>Scalatest for Scala IDE p2 repository</name> | ||
<layout>p2</layout> | ||
<url>${repo.scala-ide.scalatest}</url> | ||
<snapshots><enabled>false</enabled></snapshots> | ||
</repository> | ||
</repositories> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-maven-plugin</artifactId> | ||
<version>${tycho.version}</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-packaging-plugin</artifactId> | ||
<version>${tycho.version}</version> | ||
<configuration> | ||
<archiveSite>true</archiveSite> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<site> | ||
<feature url="features/org.scala-ide.sdt.feature_0.0.0.jar" id="org.scala-ide.sdt.feature" version="2.1.0"> | ||
<category name="sdt"/> | ||
</feature> | ||
<feature url="features/org.scala-ide.sdt.source.feature_0.0.0.jar" id="org.scala-ide.sdt.source.feature" version="2.1.0"> | ||
<category name="source"/> | ||
</feature> | ||
<feature url="features/org.scala-ide.sdt.dev.feature_0.0.0.jar" id="org.scala-ide.sdt.dev.feature" version="2.1.0"> | ||
<category name="dev"/> | ||
</feature> | ||
<feature url="features/org.scala-ide.sdt.scalatest.feature_0.0.0.jar" id="org.scala-ide.sdt.scalatest.feature" version="0.1.0"> | ||
<category name="sdt.scalatest"/> | ||
</feature> | ||
<feature url="features/org.scala-ide.sdt.scalatest.source.feature_0.0.0.jar" id="org.scala-ide.sdt.scalatest.source.feature" version="0.1.0"> | ||
<category name="source"/> | ||
</feature> | ||
<category-def name="sdt" label="Scala IDE for Eclipse"/> | ||
<category-def name="sdt.scalatest" label="ScalaTest for Scala IDE"/> | ||
<category-def name="dev" label="Scala IDE for Eclipse development support"/> | ||
<category-def name="source" label="Sources"/> | ||
</site> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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> | ||
<prerequisites> | ||
<maven>3.0</maven> | ||
</prerequisites> | ||
<groupId>org.scala-ide</groupId> | ||
<artifactId>org.scala-ide.ecosystem</artifactId> | ||
<version>0.1.0-SNAPSHOT</version> | ||
<description>Build project for the scalatest support in Scala IDE</description> | ||
<packaging>eclipse-update-site</packaging> | ||
|
||
<properties> | ||
<encoding>UTF-8</encoding> | ||
<tycho.version>0.15.0</tycho.version> | ||
|
||
<!-- p2 repositories location --> | ||
<repo.eclipse.indigo>http://download.eclipse.org/releases/indigo/</repo.eclipse.indigo> | ||
<repo.eclipse.juno>http://download.eclipse.org/eclipse/updates/4.2milestones</repo.eclipse.juno> | ||
<repo.ajdt.indigo>http://download.eclipse.org/tools/ajdt/37/dev/update</repo.ajdt.indigo> | ||
<repo.scala-ide.root>http://download.scala-ide.org</repo.scala-ide.root> | ||
|
||
<!-- dependencies repos --> | ||
<eclipse.codename>indigo</eclipse.codename> | ||
<repo.eclipse>${repo.eclipse.indigo}</repo.eclipse> | ||
<repo.ajdt>${repo.ajdt.indigo}</repo.ajdt> | ||
|
||
<!-- plugin repos --> | ||
<repo.scala-ide>${repo.scala-ide.root}/nightly-update-master-trunk</repo.scala-ide> | ||
</properties> | ||
|
||
<repositories> | ||
<repository> | ||
<id>eclipse.${eclipse.codename}</id> | ||
<name>Eclipse p2 repository</name> | ||
<layout>p2</layout> | ||
<url>${repo.eclipse}</url> | ||
<snapshots><enabled>false</enabled></snapshots> | ||
</repository> | ||
<repository> | ||
<id>ajdt.${eclipse.codename}</id> | ||
<name>AJDT for Eclipse p2 repository</name> | ||
<layout>p2</layout> | ||
<url>${repo.ajdt}</url> | ||
<snapshots><enabled>false</enabled></snapshots> | ||
</repository> | ||
<repository> | ||
<id>scala-ide</id> | ||
<name>Scala IDE p2 repository</name> | ||
<layout>p2</layout> | ||
<url>${repo.scala-ide}</url> | ||
<snapshots><enabled>false</enabled></snapshots> | ||
</repository> | ||
</repositories> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-maven-plugin</artifactId> | ||
<version>${tycho.version}</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-packaging-plugin</artifactId> | ||
<version>${tycho.version}</version> | ||
<configuration> | ||
<archiveSite>true</archiveSite> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<site> | ||
<feature url="features/org.scala-ide.sdt.feature_0.0.0.jar" id="org.scala-ide.sdt.feature" version="2.1.0"> | ||
<category name="sdt"/> | ||
</feature> | ||
<feature url="features/org.scala-ide.sdt.source.feature_0.0.0.jar" id="org.scala-ide.sdt.source.feature" version="2.1.0"> | ||
<category name="source"/> | ||
</feature> | ||
<feature url="features/org.scala-ide.sdt.dev.feature_0.0.0.jar" id="org.scala-ide.sdt.dev.feature" version="2.1.0"> | ||
<category name="dev"/> | ||
</feature> | ||
<category-def name="sdt" label="Scala IDE for Eclipse"/> | ||
<category-def name="dev" label="Scala IDE for Eclipse development support"/> | ||
<category-def name="source" label="Sources"/> | ||
</site> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
Oops, something went wrong.