Skip to content

Commit

Permalink
#118: Updated Project Keeper.
Browse files Browse the repository at this point in the history
  • Loading branch information
redcatbear committed Jun 2, 2022
1 parent bf0ec3e commit a1d66e7
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dependencies_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
cache: 'maven'
- name: Checking dependencies for vulnerabilities
run: mvn org.sonatype.ossindex.maven:ossindex-maven-plugin:audit -f pom.xml
run: mvn --batch-mode org.sonatype.ossindex.maven:ossindex-maven-plugin:audit -f pom.xml
2 changes: 1 addition & 1 deletion .project-keeper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sources:
path: pom.xml
modules:
- integration_tests
link_replacements:
linkReplacements:
- "LICENSE-exasol-jdbc.txt|https://docs.exasol.com/db/latest/connect_exasol/drivers/jdbc.htm"
excludes:
- "E-PK-CORE-17: Missing required file: '.github/workflows/ci-build-next-java.yml'"
Expand Down
4 changes: 2 additions & 2 deletions dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,14 @@
| [Maven Deploy Plugin][60] | [The Apache Software License, Version 2.0][27] |
| [Maven Site Plugin 3][62] | [The Apache Software License, Version 2.0][27] |

[1]: LICENSE-exasol-jdbc.txt
[16]: https://github.com/exasol/test-db-builder-java/
[27]: http://www.apache.org/licenses/LICENSE-2.0.txt
[32]: https://maven.apache.org/surefire/maven-surefire-plugin/
[54]: http://maven.apache.org/plugins/maven-clean-plugin/
[3]: https://opensource.org/licenses/MIT
[36]: https://maven.apache.org/surefire/maven-failsafe-plugin/
[26]: https://www.mojohaus.org/flatten-maven-plugin/
[1]: https://docs.exasol.com/db/latest/connect_exasol/drivers/jdbc.htm
[18]: https://github.com/exasol/maven-project-version-getter
[42]: http://www.mojohaus.org/exec-maven-plugin
[34]: http://www.mojohaus.org/versions-maven-plugin/
Expand Down Expand Up @@ -80,7 +81,6 @@
[10]: https://junit.org/junit5/
[28]: https://sonatype.github.io/ossindex-maven/maven-plugin/
[4]: https://testcontainers.org
[26]: https://www.mojohaus.org/flatten-maven-plugin/flatten-maven-plugin
[46]: http://www.mojohaus.org/build-helper-maven-plugin/
[50]: https://github.com/Huluvu424242/plantuml-maven-plugin
[6]: http://hamcrest.org/JavaHamcrest/
Expand Down
7 changes: 6 additions & 1 deletion doc/changes/changes_1.2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ Push-down of aggregate functions is not yet implemented. We will add that in a f

### Plugin Dependency Updates

* Updated `com.exasol:error-code-crawler-maven-plugin:0.1.1` to `1.1.0`
* Updated `com.exasol:error-code-crawler-maven-plugin:0.1.1` to `1.1.1`
* Updated `com.exasol:project-keeper-maven-plugin:2.3.0` to `2.4.6`
* Updated `org.apache.maven.plugins:maven-compiler-plugin:3.9.0` to `3.10.1`
* Updated `org.apache.maven.plugins:maven-jar-plugin:3.2.0` to `3.2.2`
* Updated `org.codehaus.mojo:build-helper-maven-plugin:3.2.0` to `3.3.0`
* Updated `org.codehaus.mojo:versions-maven-plugin:2.8.1` to `2.10.0`
* Updated `org.jacoco:jacoco-maven-plugin:0.8.7` to `0.8.8`
* Updated `org.sonatype.ossindex.maven:ossindex-maven-plugin:3.1.0` to `3.2.0`
13 changes: 8 additions & 5 deletions pk_generated_parent.pom
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>11</java.version>
<test.excludeTags/>
</properties>
<licenses>
<license>
Expand Down Expand Up @@ -41,7 +42,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.9.0</version>
<version>3.10.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
Expand Down Expand Up @@ -95,7 +96,7 @@
<plugin>
<groupId>org.sonatype.ossindex.maven</groupId>
<artifactId>ossindex-maven-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
<executions>
<execution>
<id>audit</id>
Expand Down Expand Up @@ -128,12 +129,13 @@
<!-- Set the highest log level for coverage testing, so that we
have a chance to reach branches in the logging lambdas too. -->
<argLine>-Djava.util.logging.config.file=src/test/resources/logging.properties ${argLine}</argLine>
<excludedGroups>${test.excludeTags}</excludedGroups>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.8.1</version>
<version>2.10.0</version>
<executions>
<execution>
<id>display-updates</id>
Expand All @@ -157,6 +159,7 @@
<property> in the logging lambdas too. -->
<argLine>-Djava.util.logging.config.file=src/test/resources/logging.properties ${argLine}</argLine>
<systemPropertyVariables/>
<excludedGroups>${test.excludeTags}</excludedGroups>
</configuration>
<executions>
<execution>
Expand All @@ -171,7 +174,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
<version>0.8.8</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand Down Expand Up @@ -212,7 +215,7 @@
<plugin>
<groupId>com.exasol</groupId>
<artifactId>error-code-crawler-maven-plugin</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<executions>
<execution>
<id>verify</id>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
<plugin>
<groupId>com.exasol</groupId>
<artifactId>project-keeper-maven-plugin</artifactId>
<version>2.3.0</version>
<version>2.4.6</version>
<executions>
<execution>
<goals>
Expand Down

0 comments on commit a1d66e7

Please sign in to comment.