File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,15 @@ import com.lightbend.paradox.apidoc.ApidocPlugin.autoImport.apidocRootPackage
35
35
(...)
36
36
```
37
37
38
+ ### When only Scaladoc is generated
39
+
40
+ If the project does not publish Javadoc, the corresponding Javadoc base URL can be cleared and the Java links will point to the ` javadsl ` package in the Scaladocs.
41
+
42
+ Example:
43
+ ``` scala
44
+ " javadoc.akka.stream.alpakka.base_url" -> " "
45
+ ```
46
+
38
47
## License
39
48
40
49
The license is Apache 2.0, see LICENSE.
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ libraryDependencies ++= Seq(
14
14
Library .scalatest % Test
15
15
)
16
16
17
- licenses += (" Apache-2.0" , url(" http ://www.apache.org/licenses/LICENSE-2.0" ))
17
+ licenses += (" Apache-2.0" , url(" https ://www.apache.org/licenses/LICENSE-2.0" ))
18
18
homepage := Some (url(" https://github.com/lightbend/sbt-paradox-apidoc" ))
19
19
scmInfo := Some (
20
20
ScmInfo (url(" https://github.com/lightbend/sbt-paradox-apidoc" ), " git@github.com:lightbend/sbt-paradox-apidoc.git" )
@@ -25,8 +25,9 @@ developers += Developer(
25
25
" https://gitter.im/lightbend/paradox" ,
26
26
url(" https://github.com/lightbend/sbt-paradox-apidoc/graphs/contributors" )
27
27
)
28
- organizationName := " Lightbend Inc."
29
- startYear := Some (2018 )
28
+ organizationName := " Lightbend Inc."
29
+ organizationHomepage := Some (url(" https://lightbend.com" ))
30
+ startYear := Some (2018 )
30
31
31
32
bintrayOrganization := Some (" sbt" )
32
33
bintrayRepository := " sbt-plugin-releases"
@@ -39,3 +40,5 @@ scriptedLaunchOpts += ("-Dproject.version=" + version.value)
39
40
scriptedLaunchOpts ++= java.lang.management.ManagementFactory .getRuntimeMXBean.getInputArguments.asScala.filter(
40
41
a => Seq (" -Xmx" , " -Xms" , " -XX" , " -Dfile" ).exists(a.startsWith)
41
42
)
43
+
44
+ packageSrc / publishArtifact := false
You can’t perform that action at this time.
0 commit comments