File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
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,7 +6,9 @@ name := "scala-parser-combinators"
6
6
7
7
version := " 1.0.5-SNAPSHOT"
8
8
9
- scalaVersion := " 2.11.6"
9
+ scalaVersion := crossScalaVersions.value.head
10
+
11
+ crossScalaVersions := Seq (" 2.11.6" , " 2.12.0-M1" )
10
12
11
13
// important!! must come here (why?)
12
14
scalaModuleOsgiSettings
You can’t perform that action at this time.
0 commit comments