@@ -9,18 +9,16 @@ object MyBuild extends Build{
9
9
name := projectName,
10
10
scalaVersion := " 2.11.8" ,
11
11
crossScalaVersions := Seq (" 2.10.6" ,scalaVersion.value),
12
- description := " Composable Records and type-indexed Maps for Scala " ,
12
+ description := " Faithful extensions of the Scala standard library " ,
13
13
libraryDependencies ++= Seq (
14
14
" org.scalatest" %% " scalatest" % " 3.0.0-RC4" % " test" ,
15
- " org.typelevel" %% " macro-compat" % " 1.1.0" ,
16
- " org.scala-lang" % " scala-compiler" % scalaVersion.value % " provided" ,
17
- compilerPlugin(" org.scalamacros" % " paradise" % " 2.1.0" cross CrossVersion .full)
15
+ " org.scala-lang" % " scala-compiler" % scalaVersion.value % " provided"
18
16
),
19
17
scalacOptions ++= Seq (" -feature" , " -deprecation" , " -unchecked" ),
20
18
// scalacOptions ++= Seq("-Xprint:patmat", "-Xshow-phases"),
21
19
testOptions in Test += Tests .Argument (TestFrameworks .ScalaTest , " -oFD" ),
22
20
parallelExecution := false , // <- until TMap thread-safety issues are resolved
23
- version := " 0.5.1 " ,
21
+ version := " 0.5.2 " ,
24
22
organizationName := " Jan Christopher Vogt" ,
25
23
organization := " org.cvogt" ,
26
24
scalacOptions in (Compile , doc) <++= (version,sourceDirectory in Compile ,name).map((v,src,n) => Seq (
@@ -43,7 +41,7 @@ object MyBuild extends Build{
43
41
publishArtifact in Test := false ,
44
42
pomIncludeRepository := { _ => false },
45
43
makePomConfiguration ~= { _.copy(configurations = Some (Seq (Compile , Runtime , Optional ))) },
46
- licenses += (" Two-clause BSD-style license " , url(" http://github.com/cvogt/ " + projectName + " /blob/master/ LICENSE.txt " )),
44
+ licenses += (" Apache 2.0 " , url(" http://www.apache.org/licenses/ LICENSE-2.0 " )),
47
45
homepage := Some (url(" http://github.com/cvogt/" + projectName)),
48
46
startYear := Some (2015 ),
49
47
pomExtra :=
0 commit comments