Skip to content

Commit a9fb5ae

Browse files
#9: Added logging library as a common dependency (#10)
Co-authored-by: Anastasiia Sergienko <46891819+AnastasiiaSergienko@users.noreply.github.com>
1 parent 66a93e4 commit a9fb5ae

File tree

8 files changed

+32
-8
lines changed

8 files changed

+32
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ project/.gnupg/local*
77
project/target
88
target/
99
.history
10+
.bsp
1011

1112
# Java
1213
*.class

doc/changes/changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# Releases
22

3-
* [v0.1.0](changes_0.1.0.md)
3+
* [0.1.1](changes_0.1.1.md)
4+
* [0.1.0](changes_0.1.0.md)

doc/changes/changes_0.1.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
## Features
44

55
* [#1](https://github.com/exasol/import-export-udf-common-scala/issues/1): Added initial implementation (PR [#2](https://github.com/exasol/import-export-udf-common-scala/pull/2))
6-
* [#3](https://github.com/exasol/import-export-udf-common-scala/issues/3): Updated documentation (PR [#4](https://github.com/exasol/import-export-udf-common-scala/pull/6))
6+
* [#3](https://github.com/exasol/import-export-udf-common-scala/issues/3): Updated documentation (PR [#6](https://github.com/exasol/import-export-udf-common-scala/pull/6))

doc/changes/changes_0.1.1.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Import Export UDF Common Scala 0.1.1, released 2020-10-DD
2+
3+
## Features
4+
5+
* #9: Added SLF4J Logging Library as Common Dependency (PR #10)
6+
7+
## Dependency Updates
8+
9+
### Runtime Dependency Updates
10+
11+
* Updated ``sbt.version`` from `1.3.13` to `1.4.1`.
12+
* Updated ``com.fasterxml.jackson.core:jackson-databind`` from `2.11.2` to `2.11.3`.
13+
14+
### Test Dependency Updates
15+
16+
* Updated ``org.mockito:mockito-core`` from `3.5.10` to `3.5.15`.
17+
18+
### Plugin Updates
19+
20+
* Updated ``com.github.cb372:sbt-explicit-dependencies`` from `0.2.13` to `0.2.14`.

project/Dependencies.scala

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,22 @@ object Dependencies {
88
// Runtime dependencies versions
99
private val ExasolVersion = "6.1.7"
1010
private val AvroVersion = "1.10.0"
11-
private val JacksonVersion = "2.11.2"
11+
private val JacksonVersion = "2.11.3"
1212
private val TypesafeLoggingVersion = "3.9.2"
13+
private val SLF4JVersion = "1.7.30"
1314

1415
// Test dependencies versions
1516
private val ScalaTestVersion = "3.2.2"
1617
private val ScalaTestPlusVersion = "1.0.0-M2"
17-
private val MockitoCoreVersion = "3.5.10"
18+
private val MockitoCoreVersion = "3.5.15"
1819

1920
val ExasolResolvers: Seq[Resolver] = Seq(
2021
"Exasol Releases" at "https://maven.exasol.com/artifactory/exasol-releases"
2122
)
2223

2324
lazy val RuntimeDependencies: Seq[ModuleID] = Seq(
2425
"com.exasol" % "exasol-script-api" % ExasolVersion,
26+
"org.slf4j" % "slf4j-simple" % SLF4JVersion,
2527
"com.typesafe.scala-logging" %% "scala-logging" % TypesafeLoggingVersion
2628
exclude ("org.slf4j", "slf4j-api")
2729
exclude ("org.scala-lang", "scala-library")

project/build.properties

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

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.0")
5050

5151
// Adds a `sbt-explicit-dependencies` plugin
5252
// https://github.com/cb372/sbt-explicit-dependencies
53-
addSbtPlugin("com.github.cb372" % "sbt-explicit-dependencies" % "0.2.13")
53+
addSbtPlugin("com.github.cb372" % "sbt-explicit-dependencies" % "0.2.14")
5454

5555
// Setup this and project/project/plugins.sbt for formatting
5656
// project/*.scala files with scalafmt

sbtx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434

3535
set -o pipefail
3636

37-
declare -r sbt_release_version="1.3.13"
38-
declare -r sbt_unreleased_version="1.4.0-M1"
37+
declare -r sbt_release_version="1.4.1"
38+
declare -r sbt_unreleased_version="1.4.1"
3939

4040
declare -r latest_213="2.13.3"
4141
declare -r latest_212="2.12.12"

0 commit comments

Comments
 (0)