You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@daffodil.apache.org by ji...@apache.org on 2023/06/02 15:28:31 UTC

[daffodil] branch main updated: Update sbt to 1.9.0

This is an automated email from the ASF dual-hosted git repository.

jinterrante pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil.git


The following commit(s) were added to refs/heads/main by this push:
     new 48ec6ea78 Update sbt to 1.9.0
48ec6ea78 is described below

commit 48ec6ea7866ab13210796ed0e70cefe633288c7c
Author: Scala Steward <sc...@virtuslab.com>
AuthorDate: Fri Jun 2 10:15:27 2023 -0400

    Update sbt to 1.9.0
    
    - Removes deprecated itSettings that we missed when replaceing the
      IntegrationTest config with the daffodil-test-integration subproject
    - Specify the new releaseNotesURL setting to point to the release pages
      on daffodil.apache.org
---
 build.sbt                | 3 ++-
 project/build.properties | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/build.sbt b/build.sbt
index 90f60e83d..deaf5918c 100644
--- a/build.sbt
+++ b/build.sbt
@@ -234,12 +234,13 @@ lazy val commonSettings = Seq(
   ),
   licenses := Seq(License.Apache2),
   homepage := Some(url("https://daffodil.apache.org")),
+  releaseNotesURL := Some(url(s"https://daffodil.apache.org/releases/${version.value}/")),
   unmanagedBase := baseDirectory.value / "lib" / "jars",
   sourceManaged := baseDirectory.value / "src_managed",
   resourceManaged := baseDirectory.value / "resource_managed",
   libraryDependencies ++= Dependencies.common,
   testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "--verbosity=1"),
-) ++ Defaults.itSettings
+)
 
 def buildScalacOptions(scalaVersion: String) = {
   val commonOptions = Seq(
diff --git a/project/build.properties b/project/build.properties
index fc856f379..d14383dcc 100644
--- a/project/build.properties
+++ b/project/build.properties
@@ -15,4 +15,4 @@
  * limitations under the License.
  */
 
-sbt.version=1.8.3
+sbt.version=1.9.0