Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

slack scala client 100 and pekko 2 #121

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
arguments: |
build
-PscalaVersion=2.12.17
-PscalaVersion=2.12.19
- name: build 2.13
uses: gradle/gradle-build-action@937999e9cc2425eddc7fd62d1053baf041147db7
with:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ outside this list)
```
4. Perform a release in selected Scala versions:
```
./gradlew shellbase-example:publish -PscalaVersion=2.12.17
./gradlew shellbase-slack:publish -PscalaVersion=2.12.17
./gradlew shellbase-core:publish -PscalaVersion=2.12.17
./gradlew shellbase-example:publish -PscalaVersion=2.12.19
./gradlew shellbase-slack:publish -PscalaVersion=2.12.19
./gradlew shellbase-core:publish -PscalaVersion=2.12.19
./gradlew shellbase-example:publish -PscalaVersion=2.13.10
./gradlew shellbase-slack:publish -PscalaVersion=2.13.10
./gradlew shellbase-core:publish -PscalaVersion=2.13.10
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ buildscript {
ext.jodaTimeVersion = '2.12.5'
ext.junitVersion = '4.13.2'
ext.mockitoVersion = '4.8.1'
ext.scalaSlackClientVersion = '0.4.0'
ext.scalaSlackClientVersion = '1.0.0'
ext.scalatestVersion = '3.0.9'
ext.slf4jVersion = '2.0.9'
ext.velocityVersion = '1.7'
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ javaSourceVersion = 1.8
javaTargetVersion = 1.8

# Scala versions
supportedScalaVersions = 2.12.17, 2.13.10
defaultScalaVersion = 2.12.17
supportedScalaVersions = 2.12.19, 2.13.10
defaultScalaVersion = 2.12.19


# Gradle UI
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/
package com.sumologic.shellbase.slack

import akka.actor.ActorSystem
import org.apache.pekko.actor.ActorSystem
import slack.api.BlockingSlackApiClient

trait SlackState {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/
package com.sumologic.shellbase.slack

import akka.actor.ActorSystem
import org.apache.pekko.actor.ActorSystem
import org.mockito.ArgumentMatchers.{eq => matcher_eq, _}
import org.mockito.Mockito.{verify, when}
import org.mockito.stubbing.OngoingStubbing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/
package com.sumologic.shellbase.slack

import akka.actor.ActorSystem
import org.apache.pekko.actor.ActorSystem
import com.sumologic.shellbase.ShellCommand
import org.apache.commons.cli.CommandLine
import org.junit.runner.RunWith
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

package com.sumologic.shellbase.slack

import akka.actor.ActorSystem
import org.apache.pekko.actor.ActorSystem
import com.sumologic.shellbase.ShellCommand
import org.apache.commons.cli.CommandLine
import org.junit.runner.RunWith
Expand Down
Loading