Skip to content

Commit 1e064e0

Browse files
authored
Updated dependencies (#17)
1 parent ba6065c commit 1e064e0

File tree

9 files changed

+92
-45
lines changed

9 files changed

+92
-45
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/release_droid_upload_github_release_assets.yml

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

.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: 12 additions & 12 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_2.0.3.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Test utilities for `java.util.logging` 2.0.3, released 2023-02-16
2+
3+
Code name: Dependency Upgrade
4+
5+
## Summary
6+
7+
Removed references to discontinued repository `maven.exasol.com`.
8+
9+
## Features
10+
11+
* #16: Removed references to discontinued repository `maven.exasol.com`
12+
13+
## Dependency Updates
14+
15+
### Test Dependency Updates
16+
17+
* Updated `org.junit.jupiter:junit-jupiter-engine:5.9.0` to `5.9.2`
18+
19+
### Plugin Dependency Updates
20+
21+
* Updated `com.exasol:error-code-crawler-maven-plugin:1.1.2` to `1.2.2`
22+
* Updated `com.exasol:project-keeper-maven-plugin:2.6.2` to `2.9.3`
23+
* Updated `io.github.zlika:reproducible-build-maven-plugin:0.15` to `0.16`
24+
* Updated `org.apache.maven.plugins:maven-deploy-plugin:3.0.0-M1` to `3.0.0`
25+
* Updated `org.apache.maven.plugins:maven-javadoc-plugin:3.4.0` to `3.4.1`
26+
* Updated `org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M5` to `3.0.0-M8`
27+
* Updated `org.codehaus.mojo:flatten-maven-plugin:1.2.7` to `1.3.0`
28+
* Updated `org.codehaus.mojo:versions-maven-plugin:2.10.0` to `2.14.2`

pk_generated_parent.pom

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

pom.xml

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.exasol</groupId>
55
<artifactId>java-util-logging-testing</artifactId>
6-
<version>2.0.2</version>
6+
<version>2.0.3</version>
77
<name>Test utilities for `java.util.logging`</name>
88
<description>This project provides utilities that help testing software that uses `java.util.logging` as its logging
99
framework.</description>
1010
<url>https://github.com/exasol/java-util-logging-testing/</url>
1111
<properties>
12-
<junit.version>5.9.0</junit.version>
12+
<junit.version>5.9.2</junit.version>
1313
</properties>
1414
<licenses>
1515
<license>
@@ -41,22 +41,6 @@
4141
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
4242
</repository>
4343
</distributionManagement>
44-
<repositories>
45-
<repository>
46-
<id>maven.exasol.com</id>
47-
<url>https://maven.exasol.com/artifactory/exasol-releases</url>
48-
<snapshots>
49-
<enabled>false</enabled>
50-
</snapshots>
51-
</repository>
52-
<repository>
53-
<id>maven.exasol.com-snapshots</id>
54-
<url>https://maven.exasol.com/artifactory/exasol-snapshots</url>
55-
<snapshots>
56-
<enabled>true</enabled>
57-
</snapshots>
58-
</repository>
59-
</repositories>
6044
<dependencies>
6145
<dependency>
6246
<groupId>org.junit.jupiter</groupId>
@@ -83,7 +67,7 @@
8367
<plugin>
8468
<groupId>com.exasol</groupId>
8569
<artifactId>project-keeper-maven-plugin</artifactId>
86-
<version>2.6.2</version>
70+
<version>2.9.3</version>
8771
<executions>
8872
<execution>
8973
<goals>
@@ -104,7 +88,7 @@
10488
<parent>
10589
<artifactId>java-util-logging-testing-generated-parent</artifactId>
10690
<groupId>com.exasol</groupId>
107-
<version>2.0.2</version>
91+
<version>2.0.3</version>
10892
<relativePath>pk_generated_parent.pom</relativePath>
10993
</parent>
11094
</project>

0 commit comments

Comments
 (0)