Skip to content

Commit df58288

Browse files
Merge pull request #8 from exasol/enhamcement/5_added_oosindex_and_varsions_plugins
#5: Added ossindex-maven-plugin and versions-maven-plugin, updated de…
2 parents 405a4ce + 6af4551 commit df58288

File tree

4 files changed

+265
-168
lines changed

4 files changed

+265
-168
lines changed

README.md

+33-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Test Utilities for `java.util.logging`
22

3-
[![Build Status](https://travis-ci.org/exasol/virtual-schemas.svg?branch=master)](https://travis-ci.org/exasol/java-util-logging-testing)
3+
[![Build Status](https://travis-ci.com/exasol/java-util-logging-testing.svg?branch=master)](https://travis-ci.com/exasol/java-util-logging-testing)
4+
[![Maven Central](https://img.shields.io/maven-central/v/com.exasol/java-util-logging-testing)](https://search.maven.org/artifact/com.exasol/java-util-logging-testing)
45

56
SonarCloud results:
67

@@ -30,6 +31,10 @@ Add this log handler if you want to record log messages created by your software
3031

3132
This is an open source project which is officially supported by Exasol. For any question, you can contact our support team.
3233

34+
## Information for Users
35+
36+
* [Changelog](doc/changes/changelog.md)
37+
3338
## Dependencies
3439

3540
### Run Time Dependencies
@@ -38,11 +43,34 @@ Running the Virtual Schema requires a Java Runtime version 11 or later.
3843

3944
### Build Time Dependencies
4045

41-
| Dependency | Purpose | License |
42-
|-------------------------------------------------------------------------------------|--------------------------------------------------------|-------------------------------|
43-
| [Java Hamcrest](http://hamcrest.org/JavaHamcrest/) | Checking for conditions in code via matchers | BSD License |
44-
| [JUnit](https://junit.org/junit5) | Unit testing framework | Eclipse Public License 1.0 |
46+
| Dependency | Purpose | License |
47+
|--------------------------------------------------------------------------|--------------------------------------------------------|-------------------------------|
48+
| [Java Hamcrest](http://hamcrest.org/JavaHamcrest/) | Checking for conditions in code via matchers | BSD License |
49+
| [JUnit](https://junit.org/junit5) | Unit testing framework | Eclipse Public License 1.0 |
50+
51+
### Maven Plug-ins
52+
53+
| Plug-in | Purpose | License |
54+
|--------------------------------------------------------------------------|--------------------------------------------------------|-------------------------------|
55+
| [Maven Compiler Plugin][maven-compiler-plugin] | Setting required Java version | Apache License 2.0 |
56+
| [Maven Enforcer Plugin][maven-enforcer-plugin] | Controlling environment constants | Apache License 2.0 |
57+
| [Maven GPG Plugin](https://maven.apache.org/plugins/maven-gpg-plugin/) | Code signing | Apache License 2.0 |
58+
| [Maven Jacoco Plugin][maven-jacoco-plugin] | Code coverage metering | Eclipse Public License 2.0 |
59+
| [Maven Javadoc Plugin][maven-javadoc-plugin] | Creating a Javadoc JAR | Apache License 2.0 |
60+
| [Maven Source Plugin][maven-source-plugin] | Creating a source code JAR | Apache License 2.0 |
61+
| [Maven Surefire Plugin][maven-surefire-plugin] | Unit testing | Apache License 2.0 |
62+
| [Sonatype OSS Index Maven Plugin][sonatype-oss-index-maven-plugin] | Checking Dependencies Vulnerability | ASL2 |
63+
| [Versions Maven Plugin][versions-maven-plugin] | Checking if dependencies updates are available | Apache License 2.0 |
4564

4665
# License
4766

4867
This software is licensed under the [MIT license](LICENSE).
68+
69+
[maven-compiler-plugin]: https://maven.apache.org/plugins/maven-compiler-plugin/
70+
[maven-enforcer-plugin]: http://maven.apache.org/enforcer/maven-enforcer-plugin/
71+
[maven-jacoco-plugin]: https://www.eclemma.org/jacoco/trunk/doc/maven.html
72+
[maven-javadoc-plugin]: https://maven.apache.org/plugins/maven-javadoc-plugin/
73+
[maven-source-plugin]: https://maven.apache.org/plugins/maven-source-plugin/
74+
[maven-surefire-plugin]: https://maven.apache.org/surefire/maven-surefire-plugin/
75+
[sonatype-oss-index-maven-plugin]: https://sonatype.github.io/ossindex-maven/maven-plugin/
76+
[versions-maven-plugin]: https://www.mojohaus.org/versions-maven-plugin/

doc/changes/changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Changes
2+
3+
* [2.0.0](changes-2.0.0.md)

doc/changes/changes-2.0.0.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Test Utilities for `java.util.logging` 2.0.0, released 30.06.2020
2+
3+
## Features / Enhancements
4+
5+
* #5: Added ossindex-maven-plugin and versions-maven-plugin, updated dependencies.
6+
* #6: Ported from Java 9 to Java 11.
7+
8+
## Dependency updates
9+
10+
* Added `org.sonatype.ossindex.maven:ossindex-maven-plugin:3.1.0`
11+
* Added `org.codehaus.mojo:versions-maven-plugin:2.7`
12+
* Added `org.apache.maven.plugins:maven-enforcer-plugin:3.0.0-M3`
13+
* Updated `org.junit.jupiter:junit-jupiter-engine` from 5.4.2 to 5.6.2
14+
* Updated `org.hamcrest:hamcrest` from 2.1 to 2.2
15+
* Updated `org.apache.maven.plugins:maven-compiler-plugin` from 3.2 to 3.8.1
16+
* Updated `org.apache.maven.plugins:maven-javadoc-plugin` from 3.0.1 to 3.2.0
17+
* Updated `org.apache.maven.plugins:maven-source-plugin` from 3.0.1 to 3.2.1
18+
* Updated `org.apache.maven.plugins:maven-surefire-plugin` from 3.0.0-M3 to 3.0.0-M5
19+
* Updated `org.jacoco:jacoco-maven-plugin` from 0.8.3 to 0.8.5

0 commit comments

Comments
 (0)