Skip to content

Commit f2ebe69

Browse files
committed
Updated jitpack config
1 parent 27fad36 commit f2ebe69

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
if: always()
6666
continue-on-error: true
6767
run: |
68-
cs launch --channel https://raw.githubusercontent.com/tmtsoftware/osw-apps/branch-6.0.x/apps.json rtm:0.4.0 -- target/RTM/testStoryMapping.txt tools/RTM/storyRequirementMapping.csv target/RTM/testRequirementsMapping.txt
68+
cs launch --channel https://raw.githubusercontent.com/tmtsoftware/osw-apps/branch-6.0.x/apps.json rtm:0.4.1 -- target/RTM/testStoryMapping.txt tools/RTM/storyRequirementMapping.csv target/RTM/testRequirementsMapping.txt
6969
7070
- name: Upload RTM
7171
if: always()

.github/workflows/dev.yml.orig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
if: always()
6565
continue-on-error: true
6666
run: |
67-
cs launch --channel https://raw.githubusercontent.com/tmtsoftware/osw-apps/branch-6.0.x/apps.json rtm:0.4.0 -- target/RTM/testStoryMapping.txt tools/RTM/storyRequirementMapping.csv target/RTM/testRequirementsMapping.txt
67+
cs launch --channel https://raw.githubusercontent.com/tmtsoftware/osw-apps/branch-6.0.x/apps.json rtm:0.4.1 -- target/RTM/testStoryMapping.txt tools/RTM/storyRequirementMapping.csv target/RTM/testRequirementsMapping.txt
6868

6969
- name: Upload RTM
7070
if: always()

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
if: always()
7676
continue-on-error: true
7777
run: |
78-
cs launch --channel https://raw.githubusercontent.com/tmtsoftware/osw-apps/branch-6.0.x/apps.json rtm:0.4.0 -- target/RTM/testStoryMapping.txt tools/RTM/storyRequirementMapping.csv target/RTM/testRequirementsMapping.txt
78+
cs launch --channel https://raw.githubusercontent.com/tmtsoftware/osw-apps/branch-6.0.x/apps.json rtm:0.4.1 -- target/RTM/testStoryMapping.txt tools/RTM/storyRequirementMapping.csv target/RTM/testRequirementsMapping.txt
7979
8080
- name: Upload RTM
8181
if: always()

jenkins/stil-nightly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ pipeline {
5656
])
5757

5858
// Generate RTM
59-
sh "cs launch --channel https://raw.githubusercontent.com/tmtsoftware/osw-apps/branch-6.0.x/apps.json rtm:d45709a -- target/RTM/testStoryMapping.txt tools/RTM/storyRequirementMapping.csv target/RTM/testRequirementsMapping.txt"
59+
sh "cs launch --channel https://raw.githubusercontent.com/tmtsoftware/osw-apps/branch-6.0.x/apps.json rtm:0.4.1 -- target/RTM/testStoryMapping.txt tools/RTM/storyRequirementMapping.csv target/RTM/testRequirementsMapping.txt"
6060
// Upload RTM
6161
publishHTML(target: [
6262
alwaysLinkToLastBuild: false,

project/Libs.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ object Libs {
1616
val `scalatest` = dep("org.scalatest" %%% "scalatest" % "3.2.19") // Apache License 2.0
1717
val `caffeine` = "com.github.ben-manes.caffeine" % "caffeine" % "3.2.0"
1818
val `jupiter-interface` = "net.aichler" % "jupiter-interface" % "0.11.1"
19-
val `tmt-test-reporter` = "com.github.tmtsoftware.rtm" %% "rtm" % "0.4.0"
19+
val `tmt-test-reporter` = "com.github.tmtsoftware.rtm" %% "rtm" % "0.4.1"
2020

2121
val blockhound = "io.projectreactor.tools" % "blockhound" % "1.0.11.RELEASE"
22-
val `embedded-keycloak` = "com.github.tmtsoftware.embedded-keycloak" %% "embedded-keycloak" % "0.7.3" // Apache 2.0
22+
val `embedded-keycloak` = "com.github.tmtsoftware.embedded-keycloak" %% "embedded-keycloak" % "0.7.4" // Apache 2.0
2323

2424
// Note: CrossVersion.full: version has to match exact scala version (_3.3.0 instead of _3)
2525
val `ammonite` = ("com.lihaoyi" % "ammonite_3.6.3" % "3.0.2")
@@ -30,7 +30,7 @@ object Libs {
3030
}
3131

3232
object MSocket {
33-
val Version = "0.7.1"
33+
val Version = "0.7.2"
3434

3535
val `msocket-api` = dep("com.github.tmtsoftware.msocket" %%% "msocket-api" % Version)
3636
val `msocket-http` = "com.github.tmtsoftware.msocket" %% "msocket-http" % Version

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
sbt.version=1.10.6
2-
csw.version=6.0.0-RC2
2+
csw.version=6.0.0-RC4

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ resolvers += "jitpack" at "https://jitpack.io"
1616

1717
addSbtPlugin("org.jetbrains.scala" % "sbt-kotlin-plugin" % "3.1.4")
1818

19-
libraryDependencies += "com.github.tmtsoftware" % "sbt-docs" % "0.7.0"
19+
libraryDependencies += "com.github.tmtsoftware" % "sbt-docs" % "0.7.1"
2020

2121
resolvers += Resolver.jcenterRepo
2222
addSbtPlugin("net.aichler" % "sbt-jupiter-interface" % "0.11.1")

0 commit comments

Comments
 (0)