From e2d9ee5a481594b4d611ae48016256e19b860d9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Marks?= Date: Wed, 20 Mar 2024 13:01:24 +0100 Subject: [PATCH] Add versionLine marker to pom.xml --- project/Build.scala | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/project/Build.scala b/project/Build.scala index fb94a7da68fa..a7107d1f139d 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -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 @@ -2006,6 +2009,10 @@ object Build { "scm:git:git@github.com:scala/scala3.git" ) ), + pomExtra := + + {versionLine} + , developers := List( Developer( id = "odersky",