Skip to content

Commit 574b39d

Browse files
committed
Bump SBT to 1.2.0, bump some plugins to their latest versions, remove developer links (community effort).
1 parent a0bb4e9 commit 574b39d

File tree

4 files changed

+5
-40
lines changed

4 files changed

+5
-40
lines changed

README.md

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if (logger.isDebugEnabled) logger.debug(s"Some $expensive message!")
1717
## Prerequisites ##
1818

1919
* Java 6 or higher
20-
* Scala 2.11 or 2.12
20+
* Scala 2.11, 2.12 or 2.13
2121
* Logging backend compatible with SLF4J
2222

2323
A compatible logging backend is [Logback](http://logback.qos.ch), add it to your sbt build definition:
@@ -195,26 +195,6 @@ def foo(arg: String)(implicit line: sourcecode.Line, file: sourcecode.File) = {
195195
foo("hello") // the implicit sourcecode.File is filled in automatically
196196
```
197197

198-
## Debugging Scala in IntelliJ
199-
200-
Check out [scala-trace-debug](https://github.com/JohnReedLOL/scala-trace-debug) to make multithreaded bug tracing and
201-
prevention easier than ever. Provides user-friendly prints, traces, assertions,
202-
container printing, and source code printing.
203-
204-
## Logstash
205-
206-
Check out [logstash-logback-encoder](https://github.com/logstash/logstash-logback-encoder) if you're using [Logstash](https://www.elastic.co/products/logstash).
207-
Provides logback encoders, layouts, and appenders to log in JSON format.
208-
209-
## Other noteworthy tooling
210-
211-
- https://github.com/godaddy/godaddy-logger
212-
213-
## Maintainer ##
214-
215-
The original author [Heiko Seeberger](https://twitter.com/hseeberger) stepped down Q1 2015, starting a new adventure at codecentric. Future maintenance is taken
216-
over by [Mathias Bogaert](http://twitter.com/analytically).
217-
218198
## Contribution policy ##
219199

220200
Contributions via GitHub pull requests are gladly accepted from their original author. Before we can accept pull requests, you will need to agree to the [Typesafe Contributor License Agreement](http://www.typesafe.com/contribute/cla) online, using your GitHub account.

build.sbt

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -43,19 +43,4 @@ pomIncludeRepository := (_ => false)
4343

4444
scmInfo := Some(
4545
ScmInfo(url("https://github.com/lightbend/scala-logging"), "scm:git:git@github.com:lightbend/scala-logging.git")
46-
)
47-
48-
developers := List(
49-
Developer(
50-
id = "hseeberger",
51-
name = "Heiko Seeberger",
52-
email = "",
53-
url = url("http://heikoseeberger.de")
54-
),
55-
Developer(
56-
id = "analytically",
57-
name = "Mathias Bogaert",
58-
email = "",
59-
url = url("http://twitter.com/analytically")
60-
)
6146
)

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.1.6
1+
sbt.version=1.2.0

project/plugins.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
resolvers += Resolver.typesafeRepo("releases")
22

3-
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1")
3+
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.2")
44

55
addSbtPlugin("org.scalariform" % "sbt-scalariform" % "1.8.2")
66

7-
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.8")
7+
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.9")
88

9-
addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.3")
9+
addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.4")
1010

1111
addSbtPlugin("com.scalapenos" % "sbt-prompt" % "1.0.2")

0 commit comments

Comments
 (0)