From 3502e17d7339ab03be21c46dcdbfd46f1ddbe048 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 [Cherry-picked e2d9ee5a481594b4d611ae48016256e19b860d9d] --- project/Build.scala | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/project/Build.scala b/project/Build.scala index ead5e79474c1..f0d7383f8a8f 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -85,6 +85,9 @@ object Build { val baseVersion = "3.3.4-RC1" + // LTS or Next + val versionLine = "LTS" + // 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 @@ -1815,6 +1818,10 @@ object Build { "scm:git:git@github.com:scala/scala3.git" ) ), + pomExtra := + + {versionLine} + , developers := List( Developer( id = "odersky",