Skip to content

Commit 08c7293

Browse files
committed
SI-7201 scaladoc url in scala-(library,actors,swing,reflect) pom
The project/properties/info.apiURL pom property is used by SBT to link to an artifact's scaladoc. For scala library version $v, the url is http://www.scala-lang.org/api/$v/ Note that actors, reflect and swing are included in the library docs in 2.10.x.
1 parent 487584c commit 08c7293

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

src/build/maven/scala-actors-pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@
3030
<system>JIRA</system>
3131
<url>https://issues.scala-lang.org/</url>
3232
</issueManagement>
33+
<properties>
34+
<info.apiURL>http://www.scala-lang.org/api/@VERSION@/</info.apiURL>
35+
</properties>
3336
<dependencies>
3437
<dependency>
3538
<groupId>org.scala-lang</groupId>

src/build/maven/scala-library-pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@
3030
<system>JIRA</system>
3131
<url>https://issues.scala-lang.org/</url>
3232
</issueManagement>
33+
<properties>
34+
<info.apiURL>http://www.scala-lang.org/api/@VERSION@/</info.apiURL>
35+
</properties>
3336
<dependencies>
3437
<!--<dependency>
3538
<groupId>com.typesafe</groupId>

src/build/maven/scala-reflect-pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@
3030
<system>JIRA</system>
3131
<url>https://issues.scala-lang.org/</url>
3232
</issueManagement>
33-
33+
<properties>
34+
<info.apiURL>http://www.scala-lang.org/api/@VERSION@/</info.apiURL>
35+
</properties>
3436
<dependencies>
3537
<dependency>
3638
<groupId>org.scala-lang</groupId>

src/build/maven/scala-swing-pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@
3030
<system>JIRA</system>
3131
<url>https://issues.scala-lang.org/</url>
3232
</issueManagement>
33+
<properties>
34+
<info.apiURL>http://www.scala-lang.org/api/@VERSION@/</info.apiURL>
35+
</properties>
3336
<dependencies>
3437
<dependency>
3538
<groupId>org.scala-lang</groupId>

0 commit comments

Comments
 (0)