Skip to content

Commit

Permalink
v1.2 try again
Browse files Browse the repository at this point in the history
  • Loading branch information
codybum committed Jun 11, 2024
1 parent 410ae23 commit e791112
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
java-version: '8'
java-version: '21'
distribution: 'adopt'
- name: Build with Maven
run: mvn package bundle:bundle
Expand Down
6 changes: 4 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.12.6.1</version>
<version>2.13.4.1</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
Expand Down Expand Up @@ -332,7 +332,7 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.11.2</version>
<version>2.23.1</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
Expand Down Expand Up @@ -403,12 +403,14 @@
<version>1.1.1</version>
<scope>test</scope>
</dependency>
<!--
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.5.1</version>
<scope>compile</scope>
</dependency>
-->

</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/cresco/agent/db/DBEngine.java
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ public boolean shutdown() {

//unload drivers
//DriverManager.getConnection("jdbc:derby:;shutdown=true");

//Driver d= new org.apache.derby.jdbc.EmbeddedDriver();
//Driver d= new org.hsqldb.jdbc.JDBCDriver();
//DriverManager.deregisterDriver(d);

//Driver da= new org.apache.derby.jdbc.AutoloadedDriver();
Expand Down

0 comments on commit e791112

Please sign in to comment.