Skip to content
This repository was archived by the owner on Feb 17, 2023. It is now read-only.
Open
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: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,5 @@ node_modules
actor-sdk/sdk-api/api-language/solutions/im.actor.api/source_gen
actor-sdk/sdk-api/api-language/solutions/im.actor.api/source_gen.caches
actor-sdk/sdk-api/api-language/solutions/im.actor.api/classes_gen

.DS_Store
2 changes: 1 addition & 1 deletion actor-server/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Actor Open Source Server

Actor Platform's Server, for installation instructions visit https://developer.actor.im/
Actor Platform's Server, for installation instructions visit https://actor.readme.io/docs/welcome
4 changes: 3 additions & 1 deletion actor-server/project/Resolvers.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ object Resolvers {
// for akka-rabbitmq (needed by op-rabbit)
"SpinGo OSS" at "http://spingo-oss.s3.amazonaws.com/repositories/releases",

Resolver.sonatypeRepo("snapshots")
Resolver.sonatypeRepo("snapshots"),

"Typesafe" at "https://repo.typesafe.com/typesafe/maven-releases/"
)
}
2 changes: 1 addition & 1 deletion actor-server/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.12
sbt.version=0.13.18
Binary file not shown.
10 changes: 6 additions & 4 deletions actor-server/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ resolvers ++= Seq(
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/",
Resolver.url("actor-sbt-plugins", url("https://dl.bintray.com/actor/sbt-plugins"))(Resolver.ivyStylePatterns),
"Flyway" at "http://flywaydb.org/repo",
"Era7 maven releases" at "https://s3-eu-west-1.amazonaws.com/releases.era7.com",
Classpaths.sbtPluginReleases
Classpaths.sbtPluginReleases,
"Github-API" at "http://repo.jenkins-ci.org/public/"
)

addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.5")
Expand All @@ -24,7 +24,8 @@ addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.0")

addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.0.6")

addSbtPlugin("ohnosequences" % "sbt-github-release" % "0.3.0")
// This version is no longer available in any resolver, so the jar has to be added as an unmanaged dependency
addSbtPlugin("ohnosequences" % "sbt-github-release" % "0.3.0" from "file:///./lib/sbt-github-release-0.3.0.jar")

addSbtPlugin("com.typesafe.sbt" % "sbt-aspectj" % "0.10.0")

Expand All @@ -33,5 +34,6 @@ addSbtPlugin("im.actor" % "actor-sbt-houserules" % "0.1.9")
addSbtPlugin("com.typesafe.sbt" % "sbt-multi-jvm" % "0.3.8")

libraryDependencies ++= Seq(
"com.github.os72" % "protoc-jar" % "3.0.0-b3"
"com.github.os72" % "protoc-jar" % "3.0.0-b3",
"org.kohsuke" % "github-api" % "1.77"
)