Skip to content

Commit 5d9ef15

Browse files
committed
Misc
1 parent e3c3a30 commit 5d9ef15

File tree

4 files changed

+65
-65
lines changed

4 files changed

+65
-65
lines changed

dsl-core/build.sbt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
2-
libraryDependencies += "com.chuusai" % "shapeless_2.10.2" % "2.0.0-M1"
3-
4-
libraryDependencies += "org.scalatest" %% "scalatest" % "2.0.M5b" % "test"
5-
6-
libraryDependencies += "junit" % "junit" % "4.11" % "test"
7-
1+
2+
libraryDependencies += "com.chuusai" % "shapeless_2.10.2" % "2.0.0-M1"
3+
4+
libraryDependencies += "org.scalatest" %% "scalatest" % "2.0.M5b" % "test"
5+
6+
libraryDependencies += "junit" % "junit" % "4.11" % "test"
7+

dsl-macros/build.sbt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
2-
resolvers += Resolver.sonatypeRepo("snapshots")
3-
4-
addCompilerPlugin("org.scala-lang.plugins" % "macro-paradise" % "2.0.0-SNAPSHOT" cross CrossVersion.full)
5-
6-
libraryDependencies += "org.scala-lang" % "scala-reflect" % "2.10.2"
7-
8-
libraryDependencies += "org.scalatest" %% "scalatest" % "2.0.M5b" % "test"
9-
10-
libraryDependencies += "junit" % "junit" % "4.11" % "test"
11-
1+
2+
resolvers += Resolver.sonatypeRepo("snapshots")
3+
4+
addCompilerPlugin("org.scala-lang.plugins" % "macro-paradise" % "2.0.0-SNAPSHOT" cross CrossVersion.full)
5+
6+
libraryDependencies += "org.scala-lang" % "scala-reflect" % "2.10.2"
7+
8+
libraryDependencies += "org.scalatest" %% "scalatest" % "2.0.M5b" % "test"
9+
10+
libraryDependencies += "junit" % "junit" % "4.11" % "test"
11+

dsl/build.sbt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
2-
libraryDependencies += "com.chuusai" % "shapeless_2.10.2" % "2.0.0-M1"
3-
4-
libraryDependencies += "org.scalatest" %% "scalatest" % "2.0.M5b" % "test"
5-
6-
libraryDependencies += "junit" % "junit" % "4.11" % "test"
7-
1+
2+
libraryDependencies += "com.chuusai" % "shapeless_2.10.2" % "2.0.0-M1"
3+
4+
libraryDependencies += "org.scalatest" %% "scalatest" % "2.0.M5b" % "test"
5+
6+
libraryDependencies += "junit" % "junit" % "4.11" % "test"
7+

project/settings.scala

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
1-
import sbt._
2-
3-
object Settings {
4-
val project = "DDL"
5-
6-
val company = "davidhoyt"
7-
8-
val organization = "org.github"
9-
10-
val homepage = "https://github.com/davidhoyt/scala-macro-experiments/"
11-
12-
val vcsSpecification = "git@github.com:davidhoyt/scala-macro-experiments/scala-macro-experiments.git"
13-
14-
val licenses = Seq(
15-
License(
16-
name = "The Apache Software License, Version 2.0",
17-
url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
18-
)
19-
)
20-
21-
val developers = Seq(
22-
Developer(
23-
id = "David Hoyt"
24-
, name = "David Hoyt"
25-
, email = "dhoyt@hoytsoft.org"
26-
, url = "http://www.hoytsoft.org/"
27-
, organization = "HoytSoft"
28-
, organizationUri = "http://www.hoytsoft.org/"
29-
, roles = Seq("architect", "developer")
30-
)
31-
)
32-
33-
val scalaVersion = "2.10.2"
34-
35-
val scalacOptions = Seq("-deprecation", "-unchecked", "-feature", "-Xelide-below", "900")
36-
val javacOptions = Seq("-Xlint:unchecked")
37-
38-
val prompt = GitPrompt.build
39-
}
40-
1+
import sbt._
2+
3+
object Settings {
4+
val project = "DDL"
5+
6+
val company = "davidhoyt"
7+
8+
val organization = "org.github"
9+
10+
val homepage = "https://github.com/davidhoyt/scala-macro-experiments/"
11+
12+
val vcsSpecification = "git@github.com:davidhoyt/scala-macro-experiments/scala-macro-experiments.git"
13+
14+
val licenses = Seq(
15+
License(
16+
name = "The Apache Software License, Version 2.0",
17+
url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
18+
)
19+
)
20+
21+
val developers = Seq(
22+
Developer(
23+
id = "David Hoyt"
24+
, name = "David Hoyt"
25+
, email = "dhoyt@hoytsoft.org"
26+
, url = "http://www.hoytsoft.org/"
27+
, organization = "HoytSoft"
28+
, organizationUri = "http://www.hoytsoft.org/"
29+
, roles = Seq("architect", "developer")
30+
)
31+
)
32+
33+
val scalaVersion = "2.10.2"
34+
35+
val scalacOptions = Seq("-deprecation", "-unchecked", "-feature", "-Xelide-below", "900")
36+
val javacOptions = Seq("-Xlint:unchecked")
37+
38+
val prompt = GitPrompt.build
39+
}
40+

0 commit comments

Comments
 (0)