@@ -13,7 +13,8 @@ skip in publish := true
13
13
14
14
lazy val rules = project.settings(
15
15
moduleName := " autofix-3.0.6" ,
16
- version := " 1.0.0" ,
16
+ version := " 1.0.0-SNAP1" ,
17
+ crossScalaVersions := List (" 2.12.8" , " 2.11.12" ),
17
18
organization := " org.scalatest" ,
18
19
homepage := Some (url(" https://github.com/scalatest/scalatestplus-scalafix" )),
19
20
licenses := List (" Apache-2.0" -> url(" http://www.apache.org/licenses/LICENSE-2.0" )),
@@ -22,17 +23,33 @@ lazy val rules = project.settings(
22
23
" bvenners" ,
23
24
" Bill Venners" ,
24
25
25
- url(" https://www.artima.com" )
26
+ url(" https://github.com/bvenners" )
27
+ ),
28
+ Developer (
29
+ " cheeseng" ,
30
+ " Chua Chee Seng" ,
31
+
32
+ url(" https://github.com/cheeseng" )
26
33
)
27
34
),
28
- libraryDependencies += " ch.epfl.scala" %% " scalafix-core" % V .scalafixVersion
35
+ libraryDependencies += " ch.epfl.scala" %% " scalafix-core" % V .scalafixVersion,
36
+ publishTo := {
37
+ val nexus = " https://oss.sonatype.org/"
38
+ Some (" publish-releases" at nexus + " service/local/staging/deploy/maven2" )
39
+ },
40
+ publishMavenStyle := true ,
41
+ publishArtifact in Test := false ,
42
+ pomIncludeRepository := { _ => false },
43
+ credentials += Credentials (Path .userHome / " .ivy2" / " .credentials" ),
44
+ pgpSecretRing := file((Path .userHome / " .gnupg" / " secring.gpg" ).getAbsolutePath),
45
+ pgpPassphrase := None
29
46
)
30
47
31
48
lazy val input = project.settings(
32
49
skip in publish := true ,
33
50
libraryDependencies ++=
34
51
Seq (
35
- " org.scalatest" %% " scalatest" % " 3.0.6-SNAP-for-scalafix " ,
52
+ " org.scalatest" %% " scalatest" % " 3.0.6-SNAP6 " ,
36
53
" org.scalacheck" %% " scalacheck" % " 1.14.0" ,
37
54
" org.easymock" % " easymockclassextension" % " 3.2" ,
38
55
" org.jmock" % " jmock-legacy" % " 2.8.3" ,
@@ -47,7 +64,7 @@ lazy val output = project.settings(
47
64
skip in publish := true ,
48
65
libraryDependencies ++=
49
66
Seq (
50
- " org.scalatest" %% " scalatest" % " 3.0.6-SNAP-for-scalafix " ,
67
+ " org.scalatest" %% " scalatest" % " 3.0.6-SNAP6 " ,
51
68
" org.scalacheck" %% " scalacheck" % " 1.14.0" ,
52
69
" org.easymock" % " easymockclassextension" % " 3.2" ,
53
70
" org.jmock" % " jmock-legacy" % " 2.8.3" ,
0 commit comments