Skip to content
Snippets Groups Projects
Commit d0a95c7d authored by Zachary Sabourin's avatar Zachary Sabourin
Browse files

Merge branch 'zacharysabourin/main/mvn-deps-cleanup' into 'main'

feat: Cleanup mvn deps + general cleanup

Closes #12

See merge request !29
parents 92bcd9dc 42f0c905
No related branches found
No related tags found
1 merge request!29feat: Cleanup mvn deps + general cleanup
Pipeline #31905 passed
......@@ -31,7 +31,7 @@ install-yarn:;
compile-test-resources: install-yarn;
yarn run generate-json-schema
compile-start: compile-quick;
compile-start: compile-java;
docker compose down
docker compose build
docker compose up -d
......
CREATE DATABASE eclipse;
USE eclipse;
CREATE TABLE `downloads` (
`file_id` int(10) unsigned NOT NULL DEFAULT 0,
`download_date` datetime DEFAULT NULL,
......@@ -16,8 +19,10 @@ CREATE TABLE `download_file_index` (
`file_name` varchar(255) NOT NULL DEFAULT '',
`download_count` int(10) unsigned NOT NULL DEFAULT 0,
`timestamp_disk` bigint(20) NOT NULL DEFAULT 0,
`size_disk_bytes` bigint(20) NOT NULL DEFAULT 0,
`md5sum` char(32) DEFAULT NULL,
`sha1sum` char(40) DEFAULT NULL,
`sha512sum` char(128) DEFAULT NULL,
PRIMARY KEY (`file_id`),
KEY `IDX_timestamp_disk` (`timestamp_disk`),
KEY `idx_file_name` (`file_name`(30))
......
......@@ -78,14 +78,6 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-client</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-cache</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-arc</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-hibernate-validator</artifactId>
......@@ -95,10 +87,6 @@
<artifactId>commons-text</artifactId>
<version>1.10.0</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<!-- Annotation preprocessors - reduce all of the boiler plate -->
<dependency>
......@@ -134,11 +122,6 @@
<artifactId>json-schema-validator</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5-mockito</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipsefoundation</groupId>
<artifactId>quarkus-test-common</artifactId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment