File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ if [ "$TRAVIS_JDK_VERSION" == "$PUBLISH_JDK" ] && [[ "$TRAVIS_TAG" =~ ^v[0-9]+\.
11
11
echo " Going to release from tag $TRAVIS_TAG !"
12
12
myVer=$( echo $TRAVIS_TAG | sed -e s/^v//)
13
13
publishVersion=' set every version := "' $myVer ' "'
14
- extraTarget=" publish-signed"
14
+ extraTarget=" + publish-signed"
15
15
cat admin/gpg.sbt >> project/plugins.sbt
16
16
cp admin/publish-settings.sbt .
17
17
@@ -22,4 +22,4 @@ if [ "$TRAVIS_JDK_VERSION" == "$PUBLISH_JDK" ] && [[ "$TRAVIS_TAG" =~ ^v[0-9]+\.
22
22
openssl aes-256-cbc -K $K -iv $IV -in admin/secring.asc.enc -out admin/secring.asc -d
23
23
fi
24
24
25
- sbt " $publishVersion " clean update test publishLocal $extraTarget
25
+ sbt " $publishVersion " clean update + test + publishLocal $extraTarget
Original file line number Diff line number Diff line change @@ -6,11 +6,13 @@ name := "scala-partest"
6
6
7
7
version := " 1.0.8-SNAPSHOT"
8
8
9
- scalaVersion := " 2.11.6 "
9
+ scalaVersion := crossScalaVersions.value.head
10
10
11
- scalaXmlVersion := " 1.0.3 "
11
+ crossScalaVersions := Seq ( " 2.11.6 " , " 2.12.0-M1 " )
12
12
13
- scalaCheckVersion := " 1.11.3"
13
+ scalaXmlVersion := " 1.0.4"
14
+
15
+ scalaCheckVersion := " 1.11.6"
14
16
15
17
// TODO: enable "-Xfatal-warnings" for nightlies,
16
18
// off by default because we don't want to break scala/scala pr validation due to deprecation
You can’t perform that action at this time.
0 commit comments