File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 7
7
# this environment variable is encrypted with this repo's private key and stored below:
8
8
# (See http://docs.travis-ci.com/user/environment-variables/#Secure-Variables.)
9
9
- secure : " whJQqI/7G+kUJoCCGQYbv3Y/T2Cx3EcBKfCyvMkZaVgo0wFEOUguh8I+4QqRyf9cC/uPmzwCzV9uwXsNDMcY78jouY05A+fCEnUol/9TuF5PWmXF6Yr/UmmYoCQe4pioXsbXa4uOy18kLzE0h2sOIrJ5A9NL8/58iVgl4E3pwvk="
10
-
11
10
script :
12
11
- admin/build.sh
13
- scala :
14
- - 2.11.4
15
12
jdk :
16
13
- openjdk6
17
14
- openjdk7
Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ if [ "$TRAVIS_JDK_VERSION" == "$PUBLISH_JDK" ] && [[ "$TRAVIS_TAG" =~ ^v[0-9]+\.
9
9
echo " Going to release from tag $TRAVIS_TAG !"
10
10
myVer=$( echo $TRAVIS_TAG | sed -e s/^v//)
11
11
publishVersion=' set every version := "' $myVer ' "'
12
- extraTarget=" publish-signed"
12
+ extraTarget=" + publish-signed"
13
13
14
14
cat admin/gpg.sbt >> project/plugins.sbt
15
15
admin/decrypt.sh sensitive.sbt
16
16
(cd admin/ && ./decrypt.sh secring.asc)
17
17
fi
18
18
19
- sbt ++ $TRAVIS_SCALA_VERSION " $publishVersion " clean update compile test $extraTarget
19
+ sbt " $publishVersion " clean update + test $extraTarget
Original file line number Diff line number Diff line change @@ -6,7 +6,9 @@ name := "scala-xml"
6
6
7
7
version := " 1.0.5-SNAPSHOT"
8
8
9
- scalaVersion := " 2.11.4"
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