File tree 3 files changed +16
-4
lines changed 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -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 +checkHeaders + publishLocal $extraTarget
Original file line number Diff line number Diff line change 1
- import com .typesafe .tools .mima .plugin .{MimaPlugin , MimaKeys }
2
-
3
1
resolvers in ThisBuild += " scala-pr" at " https://scala-ci.typesafe.com/artifactory/scala-integration/"
4
2
5
3
crossScalaVersions in ThisBuild := Seq (" 2.13.0-pre-e2a2cba" ) // March 16, 2017
@@ -15,7 +13,20 @@ cancelable in Global := true
15
13
lazy val core = project.in(file(" core" )).settings(scalaModuleSettings).settings(scalaModuleOsgiSettings).settings(
16
14
name := " scala-parallel-collections" ,
17
15
OsgiKeys .exportPackage := Seq (s " scala.collection.parallel.*;version= ${version.value}" ),
18
- mimaPreviousVersion := None
16
+ mimaPreviousVersion := None ,
17
+ headers := Map (
18
+ " scala" ->
19
+ (de.heikoseeberger.sbtheader.HeaderPattern .cStyleBlockComment,
20
+ """ |/* __ *\
21
+ |** ________ ___ / / ___ Scala API **
22
+ |** / __/ __// _ | / / / _ | (c) 2003-2017, LAMP/EPFL **
23
+ |** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
24
+ |** /____/\___/_/ |_/____/_/ | | **
25
+ |** |/ **
26
+ |\* */
27
+ |
28
+ |""" .stripMargin)
29
+ )
19
30
)
20
31
21
32
lazy val junit = project.in(file(" junit" )).settings(
Original file line number Diff line number Diff line change 1
1
addSbtPlugin(" org.scala-lang.modules" % " scala-module-plugin" % " 1.0.4" )
2
+ addSbtPlugin(" de.heikoseeberger" % " sbt-header" % " 1.8.0" )
You can’t perform that action at this time.
0 commit comments