Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add versionLine marker to pom.xml #19986

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ object Build {

val baseVersion = "3.4.2-RC1"

// LTS or Next
val versionLine = "Next"

// Versions used by the vscode extension to create a new project
// This should be the latest published releases.
// TODO: Have the vscode extension fetch these numbers from the Internet
Expand Down Expand Up @@ -2006,6 +2009,10 @@ object Build {
"scm:git:[email protected]:scala/scala3.git"
)
),
pomExtra :=
<properties>
<scala.versionLine>{versionLine}</scala.versionLine>
</properties>,
developers := List(
Developer(
id = "odersky",
Expand Down
Loading