Skip to content

Commit 7cda05e

Browse files
authored
#43: Migrated to udf-api-java from exasol-script-api (#44)
Fixes #43
1 parent 553e223 commit 7cda05e

File tree

10 files changed

+220
-135
lines changed

10 files changed

+220
-135
lines changed

.github/workflows/broken_links_checker.yml

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/ci-build-next-java.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/ci-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ on:
99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
12-
strategy:
13-
fail-fast: false
1412
concurrency:
1513
group: ${{ github.workflow }}-${{ github.ref }}
1614
cancel-in-progress: true
@@ -31,6 +29,8 @@ jobs:
3129
path: ~/.sonar/cache
3230
key: ${{ runner.os }}-sonar
3331
restore-keys: ${{ runner.os }}-sonar
32+
- name: Enable testcontainer reuse
33+
run: echo 'testcontainers.reuse.enable=true' > "$HOME/.testcontainers.properties"
3434
- name: Run scalafix linting
3535
run: |
3636
mvn --batch-mode clean compile test scalafix:scalafix \

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 3.1.2
1+
version = 3.7.1
22
project.git = true
33
runner.dialect = scala213
44

.vscode/settings.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"editor.codeActionsOnSave": {
4+
"source.organizeImports": true,
5+
"source.generate.finalModifiers": true,
6+
"source.fixAll": true
7+
},
8+
"java.codeGeneration.useBlocks": true,
9+
"java.saveActions.organizeImports": true,
10+
"java.sources.organizeImports.starThreshold": 3,
11+
"java.sources.organizeImports.staticStarThreshold": 3,
12+
"java.test.config": {
13+
"vmArgs": [
14+
"-Djava.util.logging.config.file=src/test/resources/logging.properties"
15+
]
16+
}
17+
}

dependencies.md

Lines changed: 90 additions & 90 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/changes/changelog.md

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/changes/changes_1.1.0.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Import Export UDF Common Scala 1.1.0, released 2023-03-07
2+
3+
Code name: Migrated to `udf-api-java`
4+
5+
## Summary
6+
7+
In this release, we migrated to `udf-api-java` from `exasol-script-api` dependency and discontinued references to `maven.exasol.com` repository. Additionally, updated developer guide, removed obsolete `sbt` build tool instructions.
8+
9+
## Bug Fixes
10+
11+
* #43: Migrated to `udf-api-java` from old `exasol-script-api`
12+
13+
## Documentation
14+
15+
* #39: Updated developer guide, removed obsolete `sbt` based information
16+
17+
## Dependency Updates
18+
19+
### Compile Dependency Updates
20+
21+
* Updated `com.exasol:error-reporting-java:1.0.0` to `1.0.1`
22+
* Removed `com.exasol:exasol-script-api:6.1.7`
23+
* Added `com.exasol:udf-api-java:1.0.2`
24+
* Updated `com.fasterxml.jackson.core:jackson-databind:2.13.4.2` to `2.14.2`
25+
* Updated `com.fasterxml.jackson.module:jackson-module-scala_2.13:2.13.4` to `2.14.2`
26+
* Updated `org.slf4j:slf4j-simple:1.7.36` to `2.0.6`
27+
28+
### Test Dependency Updates
29+
30+
* Updated `nl.jqno.equalsverifier:equalsverifier:3.10.1` to `3.14`
31+
* Updated `org.mockito:mockito-core:4.8.1` to `5.1.1`
32+
33+
### Plugin Dependency Updates
34+
35+
* Updated `com.diffplug.spotless:spotless-maven-plugin:2.22.8` to `2.34.0`
36+
* Updated `com.exasol:error-code-crawler-maven-plugin:1.1.2` to `1.2.2`
37+
* Updated `com.exasol:project-keeper-maven-plugin:2.8.0` to `2.9.3`
38+
* Updated `io.github.zlika:reproducible-build-maven-plugin:0.15` to `0.16`
39+
* Updated `net.alchim31.maven:scala-maven-plugin:4.6.3` to `4.8.0`
40+
* Updated `org.apache.maven.plugins:maven-assembly-plugin:3.3.0` to `3.5.0`
41+
* Updated `org.apache.maven.plugins:maven-deploy-plugin:3.0.0-M1` to `3.0.0`
42+
* Updated `org.apache.maven.plugins:maven-javadoc-plugin:3.4.0` to `3.4.1`
43+
* Updated `org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M5` to `3.0.0-M8`
44+
* Updated `org.codehaus.mojo:flatten-maven-plugin:1.2.7` to `1.3.0`
45+
* Updated `org.codehaus.mojo:versions-maven-plugin:2.10.0` to `2.14.2`
46+
* Updated `org.itsallcode:openfasttrace-maven-plugin:1.5.0` to `1.6.1`
47+
* Updated `org.scalatest:scalatest-maven-plugin:2.0.2` to `2.2.0`

0 commit comments

Comments
 (0)