File tree 2 files changed +19
-1
lines changed
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1
1
language : scala
2
2
3
+ addons :
4
+ apt :
5
+ packages :
6
+ - graphviz
7
+
3
8
before_install :
4
9
- cat /etc/hosts # optionally check the content *before*
5
10
- sudo hostname "$(hostname | cut -c1-63)"
Original file line number Diff line number Diff line change @@ -23,7 +23,20 @@ crossScalaVersions in ThisBuild := {
23
23
lazy val `scala-parser-combinators` = crossProject.in(file(" ." )).
24
24
settings(scalaModuleSettings : _* ).
25
25
settings(
26
- name := " scala-parser-combinators-root"
26
+ name := " scala-parser-combinators-root" ,
27
+ apiMappings += (scalaInstance.value.libraryJar ->
28
+ url(s " https://www.scala-lang.org/api/ ${scalaVersion.value}/ " )),
29
+ scalacOptions in (Compile , doc) ++= Seq (
30
+ " -diagrams" ,
31
+ " -doc-source-url" ,
32
+ s " https://github.com/scala/scala-parser-combinators/tree/v ${version.value}€{FILE_PATH}.scala " ,
33
+ " -sourcepath" ,
34
+ (baseDirectory in LocalRootProject ).value.absolutePath,
35
+ " -doc-title" ,
36
+ " Scala Parser Combinators" ,
37
+ " -doc-version" ,
38
+ version.value
39
+ )
27
40
).
28
41
jvmSettings(
29
42
// Mima uses the name of the jvm project in the artifactId
You can’t perform that action at this time.
0 commit comments