Skip to content
This repository was archived by the owner on Sep 8, 2022. It is now read-only.

Commit 9d52056

Browse files
committed
SBT 0.13 build
1 parent b3b3fd9 commit 9d52056

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+81
-0
lines changed

.gitignore

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
#
2+
# Are you tempted to edit this file?
3+
#
4+
# First consider if the changes make sense for all,
5+
# or if they are specific to your workflow/system.
6+
# If it is the latter, you can augment this list with
7+
# entries in .git/info/excludes
8+
#
9+
# see also test/files/.gitignore
10+
#
11+
12+
*.jar
13+
*~
14+
15+
build.properties
16+
17+
# target directories for ant build
18+
/build/
19+
/dists/
20+
21+
# other
22+
/out/
23+
/bin/
24+
/sandbox/
25+
26+
# eclipse, intellij
27+
/.classpath
28+
/.project
29+
/src/intellij/*.iml
30+
/src/intellij/*.ipr
31+
/src/intellij/*.iws
32+
/.cache
33+
/.idea
34+
/.settings
35+
36+
# bak files produced by ./cleanup-commit
37+
*.bak
38+
39+
# Standard symbolic link to build/quick/bin
40+
qbin
41+
42+
# Mac specific, but that is common enough a dev platform to warrant inclusion.
43+
.DS_Store
44+
45+
target/

build.sbt

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// import com.typesafe.tools.mima.plugin.MimaPlugin.mimaDefaultSettings
2+
// import com.typesafe.tools.mima.plugin.MimaKeys.previousArtifact
3+
4+
// previousArtifact := Some("org.scala-lang" % "partest_2.11.0-M4" % "1.0")
5+
6+
organization := "org.scala-lang"
7+
8+
name := "scala-partest"
9+
10+
version := "1.0"
11+
12+
scalaBinaryVersion := "2.11.0-M4"
13+
14+
scalaVersion := "2.11.0-M4"
15+
16+
libraryDependencies += "org.apache.ant" % "ant" % "1.8.4"
17+
18+
libraryDependencies += "com.googlecode.java-diff-utils" % "diffutils" % "1.3.0"
19+
20+
// libraryDependencies += "org.scala-tools.testing" % "test-interface" % "0.5"
21+
22+
libraryDependencies += "org.scala-lang" % "scala-xml" % "2.11.0-M4"
23+
24+
libraryDependencies += "org.scala-lang" % "scalap" % "2.11.0-M4"
25+
26+
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.10.2-SNAPSHOT"
27+
28+
// libraryDependencies += "org.scala-sbt" % "test-interface" % "1.0"
29+

project/build.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# "0.13.+" breaks plugin resolution
2+
sbt.version=0.13.0-RC3

project/plugins.sbt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
resolvers += Classpaths.typesafeResolver
2+
3+
// addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.5")
4+
5+
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.2.0")
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)