Skip to content

Commit

Permalink
fix: Made the spring boot application runnable from within the IDE. U…
Browse files Browse the repository at this point in the history
…pgraded derby to avoid errors in the build.
  • Loading branch information
chrisdutz committed Jan 20, 2024
1 parent ef67e41 commit 5a22ad1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/
/* tslint:disable */
/* eslint-disable */
// Generated using typescript-generator version 3.2.1263 on 2024-01-20 11:37:19.
// Generated using typescript-generator version 3.2.1263 on 2024-01-20 11:48:31.

export interface Device {
id: number;
Expand Down
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@
<commons-pool2.version>2.12.0</commons-pool2.version>
<commons-text.version>1.11.0</commons-text.version>
<commons-csv.version>1.10.0</commons-csv.version>
<derby.version>10.17.1.0</derby.version>
<dom4j.version>2.1.4</dom4j.version>
<equalsverifier.version>3.15.6</equalsverifier.version>
<freemarker.version>2.3.32</freemarker.version>
Expand Down Expand Up @@ -283,6 +284,13 @@
<version>${commons-csv.version}</version>
</dependency>

<!-- Needed in the UI tool -->
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>${derby.version}</version>
</dependency>

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
Expand Down

0 comments on commit 5a22ad1

Please sign in to comment.