Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Karasiq committed Sep 12, 2016
1 parent db609f7 commit 642979f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
18 changes: 10 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name := "proxychain"

organization := "com.github.karasiq"

version := "2.0.4-SNAPSHOT"
version := "2.0.4"

isSnapshot := version.value.endsWith("SNAPSHOT")

Expand All @@ -13,24 +13,26 @@ resolvers += "softprops-maven" at "http://dl.bintray.com/content/softprops/maven
resolvers += Resolver.sonatypeRepo("snapshots")

libraryDependencies ++= {
val akkaV = "2.4.6"
val akkaV = "2.4.10"
Seq(
"commons-io" % "commons-io" % "2.4",
"org.apache.httpcomponents" % "httpclient" % "4.3.3",
"org.apache.httpcomponents" % "httpclient" % "4.5.2",
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-stream" % akkaV,
"com.typesafe.akka" %% "akka-http-experimental" % akkaV,
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
"com.github.karasiq" %% "cryptoutils" % "1.4.0",
"org.bouncycastle" % "bcprov-jdk15on" % "1.55",
"org.bouncycastle" % "bcpkix-jdk15on" % "1.55",
"com.github.karasiq" %% "cryptoutils" % "1.4.1",
"com.github.karasiq" %% "proxyutils" % "2.0.9",
"com.github.karasiq" %% "coffeescript" % "1.0"
"com.github.karasiq" %% "coffeescript" % "1.0.1"
)
}

scalacOptions ++= Seq("-optimize", "-deprecation", "-feature")

mainClass in Compile := Some("com.karasiq.proxychain.app.Boot")

enablePlugins(JavaAppPackaging)
licenses := Seq("Apache License, Version 2.0" url("http://opensource.org/licenses/Apache-2.0"))

licenses := Seq("Apache License, Version 2.0" url("http://opensource.org/licenses/Apache-2.0"))
lazy val root = (project in file("."))
.enablePlugins(JavaAppPackaging)
2 changes: 1 addition & 1 deletion setup/setup.iss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#define OutputName "proxychain"
#define MyAppName "Proxychain"
#define MyAppVersion "2.0.3"
#define MyAppVersion "2.0.4"
#define MyAppPublisher "Karasiq, Inc."
#define MyAppURL "http://www.github.com/Karasiq"
#define MyAppExeName "bin\proxychain.bat"
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@ proxyChain {
}

akka {
loglevel = DEBUG
loglevel = INFO
log-dead-letters = 0
}

0 comments on commit 642979f

Please sign in to comment.