Skip to content

Commit

Permalink
Merge branch 'wip_experiment'
Browse files Browse the repository at this point in the history
  • Loading branch information
dotta committed Sep 26, 2011
2 parents 4a49b8e + d76383b commit 5147133
Show file tree
Hide file tree
Showing 311 changed files with 15,111 additions and 6,586 deletions.
1 change: 0 additions & 1 deletion ch.epfl.lamp.sdt/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion ch.epfl.lamp.sdt/build.properties

This file was deleted.

58 changes: 0 additions & 58 deletions ch.epfl.lamp.sdt/feature.xml

This file was deleted.

14 changes: 0 additions & 14 deletions ch.epfl.lamp.sdt/pom.xml

This file was deleted.

1 change: 0 additions & 1 deletion org.eclipse.contribution.weaving/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion org.eclipse.contribution.weaving/build.properties

This file was deleted.

58 changes: 0 additions & 58 deletions org.eclipse.contribution.weaving/feature.xml

This file was deleted.

14 changes: 0 additions & 14 deletions org.eclipse.contribution.weaving/pom.xml

This file was deleted.

9 changes: 0 additions & 9 deletions org.scala-ide.build-toolchain/build-toolchain-2.8.1.final.sh

This file was deleted.

17 changes: 17 additions & 0 deletions org.scala-ide.build-toolchain/build-toolchain-2.8.x.sh
Expand Up @@ -2,8 +2,25 @@

. $(dirname $0)/env.sh

# Scala compiler version to be used as a dependency
SCALA_VERSION=2.8.2-SNAPSHOT

#THIS NEEDS TO BE UPDATED ONCE WE HAVE SNAPSHOTS

# The precompiled compiler-interface.jar that SBT uses to communicate with scalac
# This is usually the same as Scala version, and it is not enough to be just binary
# compatible (compiler interface depends on scalac, not just std library)
SCALA_PRECOMPILED=2_8_2-SNAPSHOT

# The scala version that was used to compile SBT dependencies (it is part of the artifact name)
# It is usually enough to have a binary compatible version of SCALA_VERSION
# For instance, here we can use 2.9.0, for a 2.9.1 compiler
SBT_SCALA_VERSION=2.8.1

SBINARY_VERSION=0.4.0

set_version ${SCALA_VERSION}

PROFILE="-P sbt-2.8,default"

build $*
14 changes: 14 additions & 0 deletions org.scala-ide.build-toolchain/build-toolchain-2.9.0-1.sh
@@ -0,0 +1,14 @@
#!/bin/sh

. $(dirname $0)/env.sh

SCALA_VERSION=2.9.0-1
SCALA_PRECOMPILED=2_9_0-1
SBT_SCALA_VERSION=2.9.0-1
SBINARY_VERSION=0.4.0

set_version ${SCALA_VERSION}

PROFILE="-P sbt-2.9,default"

build $*
14 changes: 14 additions & 0 deletions org.scala-ide.build-toolchain/build-toolchain-2.9.0.final.sh
@@ -0,0 +1,14 @@
#!/bin/sh

. $(dirname $0)/env.sh

SCALA_VERSION=2.9.0
SCALA_PRECOMPILED=2_9_0
SBT_SCALA_VERSION=2.9.0
SBINARY_VERSION=0.4.0

set_version ${SCALA_VERSION}

PROFILE="-P sbt-2.9,default"

build $*
26 changes: 26 additions & 0 deletions org.scala-ide.build-toolchain/build-toolchain-2.9.1.sh
@@ -0,0 +1,26 @@
#!/bin/sh

. $(dirname $0)/env.sh

# Scala compiler version to be used as a dependency
SCALA_VERSION=2.9.1

#THIS NEEDS TO BE UPDATED ONCE WE HAVE SNAPSHOTS

# The precompiled compiler-interface.jar that SBT uses to communicate with scalac
# This is usually the same as Scala version, and it is not enough to be just binary
# compatible (compiler interface depends on scalac, not just std library)
SCALA_PRECOMPILED=2_9_1

# The scala version that was used to compile SBT dependencies (it is part of the artifact name)
# It is usually enough to have a binary compatible version of SCALA_VERSION
# For instance, here we can use 2.9.0, for a 2.9.1 compiler
SBT_SCALA_VERSION=2.9.1

SBINARY_VERSION=0.4.0

set_version ${SCALA_VERSION}

PROFILE="-P sbt-2.9,default"

build $*
26 changes: 26 additions & 0 deletions org.scala-ide.build-toolchain/build-toolchain-2.9.x.sh
@@ -0,0 +1,26 @@
#!/bin/sh

. $(dirname $0)/env.sh

# Scala compiler version to be used as a dependency
SCALA_VERSION=2.9.2-SNAPSHOT

#THIS NEEDS TO BE UPDATED ONCE WE HAVE SNAPSHOTS

# The precompiled compiler-interface.jar that SBT uses to communicate with scalac
# This is usually the same as Scala version, and it is not enough to be just binary
# compatible (compiler interface depends on scalac, not just std library)
SCALA_PRECOMPILED=2_9_1

# The scala version that was used to compile SBT dependencies (it is part of the artifact name)
# It is usually enough to have a binary compatible version of SCALA_VERSION
# For instance, here we can use 2.9.0, for a 2.9.1 compiler
SBT_SCALA_VERSION=2.9.1

SBINARY_VERSION=0.4.0

set_version ${SCALA_VERSION}

PROFILE="-P sbt-2.9,default"

build $*
Expand Up @@ -2,8 +2,10 @@

. $(dirname $0)/env.sh

SCALA_VERSION=2.8.0
SCALA_VERSION=2.8.2-SNAPSHOT

set_version ${SCALA_VERSION}

PROFILE="-P local"

build $*
24 changes: 24 additions & 0 deletions org.scala-ide.build-toolchain/build-toolchain-local-trunk.sh
@@ -0,0 +1,24 @@
#!/bin/sh

. $(dirname $0)/env.sh

# Scala compiler version to be used as a dependency
SCALA_VERSION=2.10.0-SNAPSHOT

# The precompiled compiler-interface.jar that SBT uses to communicate with scalac
# This is usually the same as Scala version, and it is not enough to be just binary
# compatible (compiler interface depends on scalac, not just std library)
SCALA_PRECOMPILED=2_10_0-SNAPSHOT

# The scala version that was used to compile SBT dependencies (it is part of the artifact name)
# It is usually enough to have a binary compatible version of SCALA_VERSION
# For instance, here we can use 2.9.0, for a 2.9.1 compiler
SBT_SCALA_VERSION=2.10.0-SNAPSHOT

SBINARY_VERSION=0.4.0

set_version ${SCALA_VERSION}

PROFILE="-P sbt-2.10,local,!default"

build $*
17 changes: 16 additions & 1 deletion org.scala-ide.build-toolchain/build-toolchain-trunk.sh
Expand Up @@ -2,8 +2,23 @@

. $(dirname $0)/env.sh

SCALA_VERSION=2.9.0-SNAPSHOT
# Scala compiler version to be used as a dependency
SCALA_VERSION=2.10.0-SNAPSHOT

# The precompiled compiler-interface.jar that SBT uses to communicate with scalac
# This is usually the same as Scala version, and it is not enough to be just binary
# compatible (compiler interface depends on scalac, not just std library)
SCALA_PRECOMPILED=2_10_0-SNAPSHOT

# The scala version that was used to compile SBT dependencies (it is part of the artifact name)
# It is usually enough to have a binary compatible version of SCALA_VERSION
# For instance, here we can use 2.9.0, for a 2.9.1 compiler
SBT_SCALA_VERSION=2.10.0-SNAPSHOT

SBINARY_VERSION=0.4.0

set_version ${SCALA_VERSION}

PROFILE="-P sbt-2.10,default"

build $*
4 changes: 4 additions & 0 deletions org.scala-ide.build-toolchain/env.sh
Expand Up @@ -23,7 +23,11 @@ build()
{
${MAVEN} \
-U \
$PROFILE \
-Dscala.version=${SCALA_VERSION} \
-Dsbt.scala.version=${SBT_SCALA_VERSION} \
-Dsbinary.version=${SBINARY_VERSION} \
-Dscala.precompiled.version=${SCALA_PRECOMPILED} \
clean install $*
}

0 comments on commit 5147133

Please sign in to comment.