Skip to content

Commit

Permalink
Merge pull request #1097 from schemacrawler/updates
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
sualeh committed Apr 23, 2023
2 parents c3bf2d5 + 3348d8e commit 1b9f960
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,12 @@
package schemacrawler.test.utility;

import static org.junit.jupiter.api.Assertions.fail;

import java.io.FileDescriptor;
import java.io.FileOutputStream;
import java.io.PrintStream;
import java.lang.reflect.Parameter;
import java.nio.charset.Charset;

import java.nio.charset.StandardCharsets;
import org.junit.jupiter.api.extension.AfterTestExecutionCallback;
import org.junit.jupiter.api.extension.BeforeTestExecutionCallback;
import org.junit.jupiter.api.extension.ExtensionContext;
Expand All @@ -47,6 +46,7 @@ final class CaptureSystemStreamsExtension
implements ParameterResolver, BeforeTestExecutionCallback, AfterTestExecutionCallback {

private static final String DEFAULT_CHARSET = Charset.defaultCharset().name();
private static final String UTF_8_CHARSET = StandardCharsets.UTF_8.toString();

private TestOutputStream err;
private TestOutputStream out;
Expand Down Expand Up @@ -75,10 +75,10 @@ public void beforeTestExecution(final ExtensionContext context) throws Exception
err = new TestOutputStream();

System.out.flush();
System.setOut(new PrintStream(out, true, DEFAULT_CHARSET));
System.setOut(new PrintStream(out, true, UTF_8_CHARSET));

System.err.flush();
System.setErr(new PrintStream(err, true, DEFAULT_CHARSET));
System.setErr(new PrintStream(err, true, UTF_8_CHARSET));
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-commandline/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js</artifactId>
<version>21.3.5</version>
<version>21.3.6</version>
<scope>provided</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-diagram/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js</artifactId>
<version>21.3.5</version>
<version>21.3.6</version>
<scope>provided</scope>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
</configurations>
<dependencies>
<dependency org="org.graalvm.js" name="js"
rev="21.3.5" conf="binaries->default" />
rev="21.3.6" conf="binaries->default" />
<dependency org="org.graalvm.js" name="js-scriptengine"
rev="21.3.5" conf="binaries->default" />
rev="21.3.6" conf="binaries->default" />
</dependencies>
</ivy-module>
2 changes: 1 addition & 1 deletion schemacrawler-jdbc-drivers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<dependency>
<groupId>net.snowflake</groupId>
<artifactId>snowflake-jdbc</artifactId>
<version>3.13.29</version>
<version>3.13.30</version>
</dependency>
<dependency>
<groupId>com.amazon.redshift</groupId>
Expand Down
4 changes: 2 additions & 2 deletions schemacrawler-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -208,13 +208,13 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.3.26</version>
<version>5.3.27</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.3.26</version>
<version>5.3.27</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions schemacrawler-scripting/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -203,13 +203,13 @@
<dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js</artifactId>
<version>21.3.5</version>
<version>21.3.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js-scriptengine</artifactId>
<version>21.3.5</version>
<version>21.3.6</version>
<scope>provided</scope>
</dependency>

Expand Down

0 comments on commit 1b9f960

Please sign in to comment.