We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2b87b6a + eb6c59d commit 5cdcf6aCopy full SHA for 5cdcf6a
project/Build.scala
@@ -1808,6 +1808,10 @@ object Build {
1808
publishTo := sonatypePublishToBundle.value,
1809
publishConfiguration ~= (_.withOverwrite(true)),
1810
publishLocalConfiguration ~= (_.withOverwrite(true)),
1811
+ projectID ~= {id =>
1812
+ val line = "scala.versionLine" -> versionLine
1813
+ id.withExtraAttributes(id.extraAttributes + line)
1814
+ },
1815
Test / publishArtifact := false,
1816
homepage := Some(url(dottyGithubUrl)),
1817
licenses += (("Apache-2.0",
@@ -1818,10 +1822,6 @@ object Build {
1818
1822
"scm:git:[email protected]:scala/scala3.git"
1819
1823
)
1820
1824
),
1821
- pomExtra :=
- <properties>
- <scala.versionLine>{versionLine}</scala.versionLine>
- </properties>,
1825
developers := List(
1826
Developer(
1827
id = "odersky",
0 commit comments