Skip to content

Commit 54d3c9f

Browse files
Merge pull request #3 from exasol/release/1.0.0
Release 1.0.0
2 parents 4d8173f + 667b108 commit 54d3c9f

File tree

3 files changed

+77
-46
lines changed

3 files changed

+77
-46
lines changed

doc/changes/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Changes
22

3-
* [1.0.0](changes_0.1.0.md)
3+
* [1.0.0](changes_1.0.0.md)

doc/changes/changes_1.0.0.md

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,38 @@
1-
# Virtual Schema for MySQL 1.0.0, released 2021-??-??
1+
# Virtual Schema for MySQL 1.0.0, released 2021-01-11
22

3-
Code name:
3+
Code name: Migration from the virtual-schemas repository
44

55
## Features / Enhancements
66

7-
* ISSUE_NUMBER: description
7+
* 1: Migrated from the virtual-schemas repository
8+
9+
## Runtime Dependencies
10+
11+
* Added `com.exasol:virtual-schema-common-jdbc:8.0.0`
12+
* Added `com.exasol:error-reporting-java:0.2.0`
13+
14+
## Test Dependencies
15+
16+
* Added `org.hamcrest:hamcrest:2.2`
17+
* Added `org.junit.jupiter:junit-jupiter:5.7.0`
18+
* Added `org.mockito:mockito-junit-jupiter:3.6.28`
19+
* Added `junit:junit:4.13.1`
20+
* Added `com.exasol:exasol-testcontainers:3.3.1`
21+
* Added `org.testcontainers:junit-jupiter:1.15.0`
22+
* Added `org.testcontainers:mysql:1.15.0`
23+
* Added `mysql:mysql-connector-java:8.0.22`
24+
* Added `com.exasol:test-db-builder-java:2.0.0`
25+
* Added `com.exasol:hamcrest-resultset-matcher:1.2.2`
26+
27+
## Plugin Dependencies
28+
29+
* Added `org.jacoco:jacoco-maven-plugin:0.8.5`
30+
* Added `org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M3`
31+
* Added `org.apache.maven.plugins:maven-compiler-plugin:3.8.1`
32+
* Added `org.apache.maven.plugins:maven-assembly-plugin:3.3.0`
33+
* Added `org.apache.maven.plugins:maven-failsafe-plugin:3.0.0-M3`
34+
* Added `org.apache.maven.plugins:maven-enforcer-plugin:3.0.0-M3`
35+
* Added `org.codehaus.mojo:versions-maven-plugin:2.7`
36+
* Added `com.exasol:artifact-reference-checker-maven-plugin:0.3.1`
37+
* Added `com.exasol:project-keeper-maven-plugin:0.4.2`
38+
* Added `org.sonatype.ossindex.maven:ossindex-maven-plugin:3.1.0`

pom.xml

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -125,16 +125,6 @@
125125
</dependencies>
126126
<build>
127127
<plugins>
128-
<plugin>
129-
<groupId>org.apache.maven.plugins</groupId>
130-
<artifactId>maven-surefire-plugin</artifactId>
131-
<version>${surefire.and.failsafe.plugin.version}</version>
132-
<configuration>
133-
<!-- Set the highest log level for coverage testing, so that we have
134-
a chance to reach branches in the logging lambdas too. -->
135-
<argLine>-Djava.util.logging.config.file=src/test/resources/logging.properties ${argLine}</argLine>
136-
</configuration>
137-
</plugin>
138128
<plugin>
139129
<groupId>org.jacoco</groupId>
140130
<artifactId>jacoco-maven-plugin</artifactId>
@@ -168,6 +158,16 @@
168158
</execution>
169159
</executions>
170160
</plugin>
161+
<plugin>
162+
<groupId>org.apache.maven.plugins</groupId>
163+
<artifactId>maven-surefire-plugin</artifactId>
164+
<version>${surefire.and.failsafe.plugin.version}</version>
165+
<configuration>
166+
<!-- Set the highest log level for coverage testing, so that we have
167+
a chance to reach branches in the logging lambdas too. -->
168+
<argLine>-Djava.util.logging.config.file=src/test/resources/logging.properties ${argLine}</argLine>
169+
</configuration>
170+
</plugin>
171171
<plugin>
172172
<groupId>org.apache.maven.plugins</groupId>
173173
<artifactId>maven-compiler-plugin</artifactId>
@@ -220,24 +220,24 @@
220220
</executions>
221221
</plugin>
222222
<plugin>
223-
<groupId>org.sonatype.ossindex.maven</groupId>
224-
<artifactId>ossindex-maven-plugin</artifactId>
225-
<version>3.1.0</version>
223+
<groupId>org.apache.maven.plugins</groupId>
224+
<artifactId>maven-enforcer-plugin</artifactId>
225+
<version>${surefire.and.failsafe.plugin.version}</version>
226226
<executions>
227227
<execution>
228-
<phase>package</phase>
228+
<id>enforce-maven</id>
229229
<goals>
230-
<goal>audit</goal>
230+
<goal>enforce</goal>
231231
</goals>
232+
<configuration>
233+
<rules>
234+
<requireMavenVersion>
235+
<version>3.3.9</version>
236+
</requireMavenVersion>
237+
</rules>
238+
</configuration>
232239
</execution>
233240
</executions>
234-
<configuration>
235-
<excludeVulnerabilityIds>
236-
<!-- Ignores CVE-2020-15250, because we use Java 11 and junit 4.13.1
237-
which contains a fix: https://ossindex.sonatype.org/vuln/7ea56ad4-8a8b-4e51-8ed9-5aad83d8efb1 -->
238-
<exclude>7ea56ad4-8a8b-4e51-8ed9-5aad83d8efb1</exclude>
239-
</excludeVulnerabilityIds>
240-
</configuration>
241241
</plugin>
242242
<plugin>
243243
<groupId>org.codehaus.mojo</groupId>
@@ -256,26 +256,6 @@
256256
<rulesUri>file:///${project.basedir}/versionsMavenPluginRules.xml</rulesUri>
257257
</configuration>
258258
</plugin>
259-
<plugin>
260-
<groupId>org.apache.maven.plugins</groupId>
261-
<artifactId>maven-enforcer-plugin</artifactId>
262-
<version>3.0.0-M3</version>
263-
<executions>
264-
<execution>
265-
<id>enforce-maven</id>
266-
<goals>
267-
<goal>enforce</goal>
268-
</goals>
269-
<configuration>
270-
<rules>
271-
<requireMavenVersion>
272-
<version>3.3.9</version>
273-
</requireMavenVersion>
274-
</rules>
275-
</configuration>
276-
</execution>
277-
</executions>
278-
</plugin>
279259
<plugin>
280260
<groupId>com.exasol</groupId>
281261
<artifactId>artifact-reference-checker-maven-plugin</artifactId>
@@ -311,6 +291,26 @@
311291
</modules>
312292
</configuration>
313293
</plugin>
294+
<plugin>
295+
<groupId>org.sonatype.ossindex.maven</groupId>
296+
<artifactId>ossindex-maven-plugin</artifactId>
297+
<version>3.1.0</version>
298+
<executions>
299+
<execution>
300+
<phase>package</phase>
301+
<goals>
302+
<goal>audit</goal>
303+
</goals>
304+
</execution>
305+
</executions>
306+
<configuration>
307+
<excludeVulnerabilityIds>
308+
<!-- Ignores CVE-2020-15250, because we use Java 11 and junit 4.13.1
309+
which contains a fix: https://ossindex.sonatype.org/vuln/7ea56ad4-8a8b-4e51-8ed9-5aad83d8efb1 -->
310+
<exclude>7ea56ad4-8a8b-4e51-8ed9-5aad83d8efb1</exclude>
311+
</excludeVulnerabilityIds>
312+
</configuration>
313+
</plugin>
314314
</plugins>
315315
</build>
316316
</project>

0 commit comments

Comments
 (0)