Skip to content

Commit

Permalink
#38: Removed exasol-test-setup-abstraction as compile dependency (#39)
Browse files Browse the repository at this point in the history
* #38: Removed exasol-test-setup-abstraction as compile dependency
  • Loading branch information
jakobbraun authored Jun 24, 2022
1 parent a2fcc20 commit 68e0705
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 7 deletions.
1 change: 1 addition & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changes

* [0.6.3](changes_0.6.3.md)
* [0.6.2](changes_0.6.2.md)
* [0.6.1](changes_0.6.1.md)
* [0.6.0](changes_0.6.0.md)
Expand Down
24 changes: 24 additions & 0 deletions doc/changes/changes_0.6.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# udf-debugging-java 0.6.3, released 2022-06-24

Code name: Removed ETSA dependency

## Summary

In this release we removed the exasol-test-setup-abstraction from the compile dependencies. Now it's declared as `provided`. By that, it's no longer pulled as transitive dependency into other projects.

## Bug Fixes

* #38: Removed exasol-test-setup-abstraction as compile dependency

## Dependency Updates

### Compile Dependency Updates

* Removed `com.exasol:exasol-test-setup-abstraction-java:0.3.2`

### Test Dependency Updates

* Updated `com.exasol:exasol-testcontainers:6.1.1` to `6.1.2`
* Updated `com.exasol:test-db-builder-java:3.3.2` to `3.3.3`
* Updated `org.mockito:mockito-junit-jupiter:4.5.1` to `4.6.1`
* Updated `org.testcontainers:junit-jupiter:1.17.1` to `1.17.2`
2 changes: 1 addition & 1 deletion pk_generated_parent.pom
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.exasol</groupId>
<artifactId>udf-debugging-java-generated-parent</artifactId>
<version>0.6.2</version>
<version>0.6.3</version>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
13 changes: 7 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.exasol</groupId>
<artifactId>udf-debugging-java</artifactId>
<version>0.6.2</version>
<version>0.6.3</version>
<name>udf-debugging-java</name>
<description>Utilities for debugging, profiling and code coverage measure for UDFs.</description>
<url>https://github.com/exasol/udf-debugging-java/</url>
Expand Down Expand Up @@ -81,6 +81,7 @@
<groupId>com.exasol</groupId>
<artifactId>exasol-test-setup-abstraction-java</artifactId>
<version>0.3.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -108,7 +109,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>4.5.1</version>
<version>4.6.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -121,19 +122,19 @@
<dependency>
<groupId>com.exasol</groupId>
<artifactId>exasol-testcontainers</artifactId>
<version>6.1.1</version>
<version>6.1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>1.17.1</version>
<version>1.17.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.exasol</groupId>
<artifactId>test-db-builder-java</artifactId>
<version>3.3.2</version>
<version>3.3.3</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -257,7 +258,7 @@
<parent>
<artifactId>udf-debugging-java-generated-parent</artifactId>
<groupId>com.exasol</groupId>
<version>0.6.2</version>
<version>0.6.3</version>
<relativePath>pk_generated_parent.pom</relativePath>
</parent>
</project>

0 comments on commit 68e0705

Please sign in to comment.