Skip to content

Commit 35c39c7

Browse files
ABLL526benedeki
andauthored
Make Balta releasable under new Maven central repository (#55)
* Make Balta releasable under new Maven central repository Closes #139 Release Notes: - Updated `sbt.version` to `1.11.5` for release. - Updated Developers - Updated `sbt-ci-release` to `1.11.2` - Removed: `sonatypeProfileName := "za.co.absa"` - Updated `scala213 = "2.13.13"` * Update publish.sbt Co-authored-by: David Benedeki <[email protected]> * Update build.yml * Update build.yml Changed to `2.13.13` --------- Co-authored-by: David Benedeki <[email protected]>
1 parent 87c997b commit 35c39c7

File tree

5 files changed

+17
-6
lines changed

5 files changed

+17
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
scala: [2.11.12, 2.12.18, 2.13.11]
32+
scala: [2.11.12, 2.12.18, 2.13.13]
3333

3434
name: Scala ${{matrix.scala}}
3535

@@ -51,7 +51,7 @@ jobs:
5151
- name: Checkout code
5252
uses: actions/checkout@v4
5353

54-
- uses: coursier/cache-action@v5
54+
- uses: coursier/cache-action@v6
5555

5656
- name: Setup Scala
5757
uses: olafurpg/setup-scala@v10

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import com.github.sbt.jacoco.report.JacocoReportSettings
1919

2020
lazy val scala211 = "2.11.12"
2121
lazy val scala212 = "2.12.18"
22-
lazy val scala213 = "2.13.11"
22+
lazy val scala213 = "2.13.13"
2323

2424
lazy val supportedScalaVersions: Seq[String] = Seq(scala211, scala212 , scala213)
2525

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.9.2
1+
sbt.version=1.11.5

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
lazy val sbtCiReleaseVersion = "1.5.10"
1+
lazy val sbtCiReleaseVersion = "1.11.2"
22

33
lazy val ow2Version = "9.5"
44
lazy val jacocoVersion = "0.8.10-absa.1"

publish.sbt

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,18 @@ ThisBuild / developers := List(
4141
email = "[email protected]",
4242
url = url("https://github.com/lsulak")
4343
),
44+
Developer(
45+
id = "ABLL526",
46+
name = "Liam Leibrandt",
47+
email = "[email protected]",
48+
url = url("https://github.com/ABLL526")
49+
),
50+
Developer(
51+
id = "jakipatryk",
52+
name = "Bartlomiej Baj",
53+
email = "[email protected]",
54+
url = url("https://github.com/jakipatryk")
55+
),
4456
Developer(
4557
id = "salamonpavel",
4658
name = "Pavel Salamon",
@@ -50,7 +62,6 @@ ThisBuild / developers := List(
5062
)
5163

5264
ThisBuild / organization := "za.co.absa.db"
53-
sonatypeProfileName := "za.co.absa"
5465

5566
ThisBuild / organizationName := "ABSA Group Limited"
5667
ThisBuild / organizationHomepage := Some(url("https://www.absa.africa"))

0 commit comments

Comments
 (0)