Skip to content

Commit

Permalink
Updated dependencies (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki authored Feb 16, 2023
1 parent ba6065c commit 1e064e0
Show file tree
Hide file tree
Showing 9 changed files with 92 additions and 45 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/broken_links_checker.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/ci-build-next-java.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.generate.finalModifiers": true,
"source.fixAll": true
},
"java.codeGeneration.useBlocks": true,
"java.saveActions.organizeImports": true,
"java.sources.organizeImports.starThreshold": 3,
"java.sources.organizeImports.staticStarThreshold": 3,
"java.test.config": {
"vmArgs": [
"-Djava.util.logging.config.file=src/test/resources/logging.properties"
]
}
}
24 changes: 12 additions & 12 deletions dependencies.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions doc/changes/changelog.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions doc/changes/changes_2.0.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Test utilities for `java.util.logging` 2.0.3, released 2023-02-16

Code name: Dependency Upgrade

## Summary

Removed references to discontinued repository `maven.exasol.com`.

## Features

* #16: Removed references to discontinued repository `maven.exasol.com`

## Dependency Updates

### Test Dependency Updates

* Updated `org.junit.jupiter:junit-jupiter-engine:5.9.0` to `5.9.2`

### Plugin Dependency Updates

* Updated `com.exasol:error-code-crawler-maven-plugin:1.1.2` to `1.2.2`
* Updated `com.exasol:project-keeper-maven-plugin:2.6.2` to `2.9.3`
* Updated `io.github.zlika:reproducible-build-maven-plugin:0.15` to `0.16`
* Updated `org.apache.maven.plugins:maven-deploy-plugin:3.0.0-M1` to `3.0.0`
* Updated `org.apache.maven.plugins:maven-javadoc-plugin:3.4.0` to `3.4.1`
* Updated `org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M5` to `3.0.0-M8`
* Updated `org.codehaus.mojo:flatten-maven-plugin:1.2.7` to `1.3.0`
* Updated `org.codehaus.mojo:versions-maven-plugin:2.10.0` to `2.14.2`
28 changes: 20 additions & 8 deletions pk_generated_parent.pom

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 4 additions & 20 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.exasol</groupId>
<artifactId>java-util-logging-testing</artifactId>
<version>2.0.2</version>
<version>2.0.3</version>
<name>Test utilities for `java.util.logging`</name>
<description>This project provides utilities that help testing software that uses `java.util.logging` as its logging
framework.</description>
<url>https://github.com/exasol/java-util-logging-testing/</url>
<properties>
<junit.version>5.9.0</junit.version>
<junit.version>5.9.2</junit.version>
</properties>
<licenses>
<license>
Expand Down Expand Up @@ -41,22 +41,6 @@
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>maven.exasol.com</id>
<url>https://maven.exasol.com/artifactory/exasol-releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>maven.exasol.com-snapshots</id>
<url>https://maven.exasol.com/artifactory/exasol-snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand All @@ -83,7 +67,7 @@
<plugin>
<groupId>com.exasol</groupId>
<artifactId>project-keeper-maven-plugin</artifactId>
<version>2.6.2</version>
<version>2.9.3</version>
<executions>
<execution>
<goals>
Expand All @@ -104,7 +88,7 @@
<parent>
<artifactId>java-util-logging-testing-generated-parent</artifactId>
<groupId>com.exasol</groupId>
<version>2.0.2</version>
<version>2.0.3</version>
<relativePath>pk_generated_parent.pom</relativePath>
</parent>
</project>

0 comments on commit 1e064e0

Please sign in to comment.