From 78efb2cb9fccf9e8cb4b80b4f4860565bc75d146 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Fri, 19 Aug 2022 10:06:32 -0300 Subject: [PATCH 01/32] add sbt-assembly plugin --- project/plugins.sbt | 1 + 1 file changed, 1 insertion(+) create mode 100644 project/plugins.sbt diff --git a/project/plugins.sbt b/project/plugins.sbt new file mode 100644 index 00000000..72477a2f --- /dev/null +++ b/project/plugins.sbt @@ -0,0 +1 @@ +addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0") From e3cafb5fe7cbb67a7adc5b53dda73d4202b4aeb7 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Tue, 20 Sep 2022 09:49:26 -0300 Subject: [PATCH 02/32] create workflow --- .github/workflows/main.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/main.yaml diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml new file mode 100644 index 00000000..ec87f209 --- /dev/null +++ b/.github/workflows/main.yaml @@ -0,0 +1,25 @@ +name: Scala Assembly + +on: + push: + branches-ignore: + - master + - main + +jobs: + test: + name: Build and Test + + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Setup JDK + uses: actions/setup-java@v3 + with: + distribution: temurin + java-version: 8 + cache: sbt + - name: Build and Test + run: sbt -v +test From ed47f952c5ac6ab3d79aad71655484d46f4a707d Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Fri, 23 Sep 2022 09:50:08 -0300 Subject: [PATCH 03/32] set plugin sbt-github-packages --- build.sbt | 3 +++ project/plugins.sbt | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index c6d7dbdb..ff9cc726 100644 --- a/build.sbt +++ b/build.sbt @@ -4,6 +4,9 @@ version := "1.0" scalaVersion := "2.11.12" +githubOwner := "chaordic" +githubRepository := "ignition-core" + scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-Xfatal-warnings", "-Xlint", "-Ywarn-dead-code", "-Xmax-classfile-name", "130") // Because we can't run two spark contexts on same VM diff --git a/project/plugins.sbt b/project/plugins.sbt index 72477a2f..3613d5b4 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1 +1,2 @@ -addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0") +addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.2.0") +addSbtPlugin("com.codecommit" % "sbt-github-packages" % "0.5.3") \ No newline at end of file From 0a5f78e63a469da91e84b797c8c0daa3d142f27e Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Fri, 23 Sep 2022 09:57:06 -0300 Subject: [PATCH 04/32] set github_token --- .github/workflows/main.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index ec87f209..18631440 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -23,3 +23,5 @@ jobs: cache: sbt - name: Build and Test run: sbt -v +test + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From b93456a777a59081541c2af9a2ba1cccbb60aa56 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Tue, 27 Sep 2022 09:51:46 -0300 Subject: [PATCH 05/32] add action step to publish --- .github/workflows/main.yaml | 5 +++++ project/plugins.sbt | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 18631440..97e56c57 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -23,5 +23,10 @@ jobs: cache: sbt - name: Build and Test run: sbt -v +test + + publish: + - needs: test + - name: publish package + run: sbt publish env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/project/plugins.sbt b/project/plugins.sbt index 3613d5b4..7e58861c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,2 +1,2 @@ addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.2.0") -addSbtPlugin("com.codecommit" % "sbt-github-packages" % "0.5.3") \ No newline at end of file +addSbtPlugin("com.codecommit" % "sbt-github-packages" % "0.5.3") From 00e9c5f81f672ef75786a394e5ba924adb39b651 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Tue, 27 Sep 2022 09:54:17 -0300 Subject: [PATCH 06/32] fix step to publish --- .github/workflows/main.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 97e56c57..4396cb97 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -26,6 +26,10 @@ jobs: publish: - needs: test + + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 - name: publish package run: sbt publish env: From aeb49fa2851f1f58126797c42fbc262c43c24d14 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Tue, 27 Sep 2022 09:55:47 -0300 Subject: [PATCH 07/32] fix step to publish --- .github/workflows/main.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 4396cb97..9e87ea5c 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -25,8 +25,7 @@ jobs: run: sbt -v +test publish: - - needs: test - + needs: test runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 From 97458ef8b33f543df049e0d687e38b5594eda3a5 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Tue, 27 Sep 2022 09:59:37 -0300 Subject: [PATCH 08/32] set github token --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 9e87ea5c..55a23489 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -32,4 +32,4 @@ jobs: - name: publish package run: sbt publish env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.TOKEN_WITH_READ_PACKAGES_SCOPE }} \ No newline at end of file From ddb592c3396cf33ec40f46edaea46d7b36cdcc62 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Tue, 27 Sep 2022 17:22:03 -0300 Subject: [PATCH 09/32] set githubTokenSource --- .github/workflows/main.yaml | 2 +- build.sbt | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 55a23489..9e87ea5c 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -32,4 +32,4 @@ jobs: - name: publish package run: sbt publish env: - GITHUB_TOKEN: ${{ secrets.TOKEN_WITH_READ_PACKAGES_SCOPE }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/build.sbt b/build.sbt index ff9cc726..7b86c183 100644 --- a/build.sbt +++ b/build.sbt @@ -4,9 +4,6 @@ version := "1.0" scalaVersion := "2.11.12" -githubOwner := "chaordic" -githubRepository := "ignition-core" - scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-Xfatal-warnings", "-Xlint", "-Ywarn-dead-code", "-Xmax-classfile-name", "130") // Because we can't run two spark contexts on same VM @@ -33,3 +30,10 @@ libraryDependencies += "org.joda" % "joda-convert" % "1.8.2" libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.25" libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.3" + + +githubOwner := "chaordic" +githubRepository := "ignition-core" +publishMavenStyle := true +githubTokenSource := TokenSource.GitConfig("github.token") || TokenSource.Environment("GITHUB_TOKEN") + From ccb5d4fda322bc707ef399333bd2d3456ce11e36 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Tue, 27 Sep 2022 17:26:00 -0300 Subject: [PATCH 10/32] remove github token from main.yaml --- .github/workflows/main.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 9e87ea5c..713d6083 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -31,5 +31,3 @@ jobs: - uses: actions/checkout@v3 - name: publish package run: sbt publish - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From dccdfc8415089fbddbb7c543c763fe37f67a30fa Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Fri, 30 Sep 2022 15:41:57 -0300 Subject: [PATCH 11/32] action review --- ...ain.yaml => scala-build-test-publish.yaml} | 24 +++++++++++++++---- 1 file changed, 19 insertions(+), 5 deletions(-) rename .github/workflows/{main.yaml => scala-build-test-publish.yaml} (55%) diff --git a/.github/workflows/main.yaml b/.github/workflows/scala-build-test-publish.yaml similarity index 55% rename from .github/workflows/main.yaml rename to .github/workflows/scala-build-test-publish.yaml index 713d6083..b472dcb6 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/scala-build-test-publish.yaml @@ -1,4 +1,4 @@ -name: Scala Assembly +name: Scala Build, Test and Publish on: push: @@ -7,11 +7,25 @@ on: - main jobs: - test: - name: Build and Test - + build: + name: Build runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Setup JDK + uses: actions/setup-java@v3 + with: + distribution: temurin + java-version: 8 + cache: sbt + - name: run build + run: sbt assembly + test: + needs: build + name: Test + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 @@ -21,7 +35,7 @@ jobs: distribution: temurin java-version: 8 cache: sbt - - name: Build and Test + - name: run tests run: sbt -v +test publish: From 5220974af3fa3fb1fdee3165ce01ba1255590fd9 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Fri, 30 Sep 2022 16:34:55 -0300 Subject: [PATCH 12/32] add env variable for token --- .github/workflows/scala-build-test-publish.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/scala-build-test-publish.yaml b/.github/workflows/scala-build-test-publish.yaml index b472dcb6..e46d55d4 100644 --- a/.github/workflows/scala-build-test-publish.yaml +++ b/.github/workflows/scala-build-test-publish.yaml @@ -20,6 +20,10 @@ jobs: java-version: 8 cache: sbt - name: run build + id: actions/create-release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ github.token }} run: sbt assembly test: From ec85903f5b0973a744b5ebeb7380bbca14df00b1 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Fri, 30 Sep 2022 17:23:03 -0300 Subject: [PATCH 13/32] change action step id --- .github/workflows/scala-build-test-publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scala-build-test-publish.yaml b/.github/workflows/scala-build-test-publish.yaml index e46d55d4..ab389775 100644 --- a/.github/workflows/scala-build-test-publish.yaml +++ b/.github/workflows/scala-build-test-publish.yaml @@ -20,7 +20,7 @@ jobs: java-version: 8 cache: sbt - name: run build - id: actions/create-release + id: run_build uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ github.token }} From 0e42731a8120dea5edce109d67290994d6cc1d4b Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Mon, 3 Oct 2022 18:10:22 -0300 Subject: [PATCH 14/32] set github_token secrets --- .../workflows/scala-build-test-publish.yaml | 20 ++++--------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/.github/workflows/scala-build-test-publish.yaml b/.github/workflows/scala-build-test-publish.yaml index ab389775..b8de465d 100644 --- a/.github/workflows/scala-build-test-publish.yaml +++ b/.github/workflows/scala-build-test-publish.yaml @@ -13,32 +13,20 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 + - name: Setup JDK uses: actions/setup-java@v3 with: distribution: temurin java-version: 8 cache: sbt + - name: run build - id: run_build uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ github.token }} + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} run: sbt assembly - test: - needs: build - name: Test - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Setup JDK - uses: actions/setup-java@v3 - with: - distribution: temurin - java-version: 8 - cache: sbt - name: run tests run: sbt -v +test From 0709c8c46012470899857828cee7dff8e10fd019 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Mon, 3 Oct 2022 18:30:34 -0300 Subject: [PATCH 15/32] set github_token secrets --- .github/workflows/scala-build-test-publish.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/scala-build-test-publish.yaml b/.github/workflows/scala-build-test-publish.yaml index b8de465d..c4596228 100644 --- a/.github/workflows/scala-build-test-publish.yaml +++ b/.github/workflows/scala-build-test-publish.yaml @@ -22,7 +22,6 @@ jobs: cache: sbt - name: run build - uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} run: sbt assembly From fcbf84be4265c96e42855e401e94214cc813d434 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Mon, 3 Oct 2022 18:33:35 -0300 Subject: [PATCH 16/32] set github_token secrets --- .github/workflows/scala-build-test-publish.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scala-build-test-publish.yaml b/.github/workflows/scala-build-test-publish.yaml index c4596228..4d85deb4 100644 --- a/.github/workflows/scala-build-test-publish.yaml +++ b/.github/workflows/scala-build-test-publish.yaml @@ -22,9 +22,10 @@ jobs: cache: sbt - name: run build - env: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} run: sbt assembly + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + - name: run tests run: sbt -v +test From 75832a86b3a22851267949011cbae0870e7a3261 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Mon, 3 Oct 2022 18:34:30 -0300 Subject: [PATCH 17/32] fix needs jobs --- .github/workflows/scala-build-test-publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scala-build-test-publish.yaml b/.github/workflows/scala-build-test-publish.yaml index 4d85deb4..d0c57c2e 100644 --- a/.github/workflows/scala-build-test-publish.yaml +++ b/.github/workflows/scala-build-test-publish.yaml @@ -31,7 +31,7 @@ jobs: run: sbt -v +test publish: - needs: test + needs: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 From 57537ceab86b43d0f174fa6fb64ccc4848077b48 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Tue, 4 Oct 2022 09:59:04 -0300 Subject: [PATCH 18/32] move env variable --- .github/workflows/scala-build-test-publish.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scala-build-test-publish.yaml b/.github/workflows/scala-build-test-publish.yaml index d0c57c2e..bca68882 100644 --- a/.github/workflows/scala-build-test-publish.yaml +++ b/.github/workflows/scala-build-test-publish.yaml @@ -6,6 +6,9 @@ on: - master - main +env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + jobs: build: name: Build @@ -23,8 +26,7 @@ jobs: - name: run build run: sbt assembly - env: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + - name: run tests From 5756140ab07d3901014c0c647c2f5d984129ea00 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Tue, 4 Oct 2022 10:07:42 -0300 Subject: [PATCH 19/32] move step publish --- .github/workflows/scala-build-test-publish.yaml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/scala-build-test-publish.yaml b/.github/workflows/scala-build-test-publish.yaml index bca68882..94a9f82a 100644 --- a/.github/workflows/scala-build-test-publish.yaml +++ b/.github/workflows/scala-build-test-publish.yaml @@ -27,15 +27,10 @@ jobs: - name: run build run: sbt assembly - - - name: run tests run: sbt -v +test - publish: - needs: build - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - name: publish package - run: sbt publish + run: sbt publish + + From 85f52370f923561955148fed906ea31cdca1aabb Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Tue, 4 Oct 2022 11:04:44 -0300 Subject: [PATCH 20/32] update version --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 7b86c183..e854a0e9 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "Ignition-Core" -version := "1.0" +version := "1.1" scalaVersion := "2.11.12" From ac09e20dee0eb6d89d92d8c996b61134985ba51e Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Tue, 4 Oct 2022 15:20:36 -0300 Subject: [PATCH 21/32] test publish and version --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index e854a0e9..00baef9f 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "Ignition-Core" -version := "1.1" +version := "0.1" scalaVersion := "2.11.12" From 5b3118253f3ceeca01839e5778040a9ad38b3668 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Wed, 5 Oct 2022 09:44:28 -0300 Subject: [PATCH 22/32] update project version --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 00baef9f..5924b2a8 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "Ignition-Core" -version := "0.1" +version := "1.2" scalaVersion := "2.11.12" From bff33b4226b304898335683cf0559f63d341e2c4 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Wed, 5 Oct 2022 09:45:26 -0300 Subject: [PATCH 23/32] update job name --- .github/workflows/scala-build-test-publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scala-build-test-publish.yaml b/.github/workflows/scala-build-test-publish.yaml index 94a9f82a..7738008e 100644 --- a/.github/workflows/scala-build-test-publish.yaml +++ b/.github/workflows/scala-build-test-publish.yaml @@ -11,7 +11,7 @@ env: jobs: build: - name: Build + name: Build | Test | Publish runs-on: ubuntu-latest steps: - name: Checkout From f376770079d1f8abbef5d6f9ad1e9305dcb28839 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Wed, 5 Oct 2022 12:51:03 -0300 Subject: [PATCH 24/32] update version and githubowner --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 5924b2a8..b4d7492a 100644 --- a/build.sbt +++ b/build.sbt @@ -32,7 +32,7 @@ libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.25" libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.3" -githubOwner := "chaordic" +githubOwner := "mail" githubRepository := "ignition-core" publishMavenStyle := true githubTokenSource := TokenSource.GitConfig("github.token") || TokenSource.Environment("GITHUB_TOKEN") From 8d338add8c5377f491dfa1c9ca170c0e109ff9d6 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Wed, 5 Oct 2022 12:52:27 -0300 Subject: [PATCH 25/32] update version and githubowner --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index b4d7492a..9de9cf19 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "Ignition-Core" -version := "1.2" +version := "1.2.1" scalaVersion := "2.11.12" From 0241276b8b3f00eb07c66fea955963106436de00 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Wed, 5 Oct 2022 13:04:10 -0300 Subject: [PATCH 26/32] update githubowner --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 9de9cf19..05cb116d 100644 --- a/build.sbt +++ b/build.sbt @@ -32,7 +32,7 @@ libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.25" libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.3" -githubOwner := "mail" +githubOwner := "chaordic" githubRepository := "ignition-core" publishMavenStyle := true githubTokenSource := TokenSource.GitConfig("github.token") || TokenSource.Environment("GITHUB_TOKEN") From 71ea5b0d98b87fea5f4d4fa249fd41ab19186032 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Wed, 5 Oct 2022 16:35:04 -0300 Subject: [PATCH 27/32] upgrade sbt version --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 7c58a83a..c0bab049 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.2.6 +sbt.version=1.2.8 From d21221dac303917d0e9f8c24f14eaa263680b03f Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Wed, 5 Oct 2022 16:40:03 -0300 Subject: [PATCH 28/32] increment version number --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 05cb116d..308b9ce1 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "Ignition-Core" -version := "1.2.1" +version := "1.2.2" scalaVersion := "2.11.12" From 12bae2bb95373a32dfc6912be222e6cb7a723c70 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Wed, 5 Oct 2022 16:45:11 -0300 Subject: [PATCH 29/32] upgrade sbt version to 1.3.13 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index c0bab049..0837f7a1 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.2.8 +sbt.version=1.3.13 From 04d38c0467f23cd151a8977f6fa25a78a1735f64 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Wed, 5 Oct 2022 16:47:45 -0300 Subject: [PATCH 30/32] upgrade sbt version to 1.7.2 --- build.sbt | 2 +- project/build.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 308b9ce1..7aec01fc 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "Ignition-Core" -version := "1.2.2" +version := "1.2.3" scalaVersion := "2.11.12" diff --git a/project/build.properties b/project/build.properties index 0837f7a1..563a014d 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.3.13 +sbt.version=1.7.2 From d3a724faed0a2806597ce88d48d92f747ae4eda7 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Wed, 5 Oct 2022 17:28:02 -0300 Subject: [PATCH 31/32] add thisBuild versionSchema parameter in build.sbt --- build.sbt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 7aec01fc..de9658ad 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,8 @@ name := "Ignition-Core" -version := "1.2.3" +version := "1.2.4" + +ThisBuild / versionScheme := Some("early-semver") scalaVersion := "2.11.12" @@ -31,7 +33,6 @@ libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.25" libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.3" - githubOwner := "chaordic" githubRepository := "ignition-core" publishMavenStyle := true From e9bdfa508e085be2ba3784a590474415a7858592 Mon Sep 17 00:00:00 2001 From: Daniel Dantas Date: Thu, 1 Dec 2022 09:53:00 -0300 Subject: [PATCH 32/32] add the organization variable in the build.sbt --- build.sbt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sbt b/build.sbt index de9658ad..b7f89076 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,7 @@ name := "Ignition-Core" +organization := "chaordic" + version := "1.2.4" ThisBuild / versionScheme := Some("early-semver")