2024-08-06 20:01:23 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>wtf.beatrice</groupId>
|
|
|
|
<artifactId>release-hive</artifactId>
|
2024-08-06 20:11:19 +02:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2024-08-06 20:01:23 +02:00
|
|
|
|
2024-08-07 21:14:19 +02:00
|
|
|
|
2024-08-06 20:01:23 +02:00
|
|
|
<dependencies>
|
2024-08-07 10:21:35 +02:00
|
|
|
<!-- Logging Dependencies -->
|
2024-08-06 20:01:23 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-api</artifactId>
|
|
|
|
<version>2.23.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
|
<version>2.23.1</version>
|
|
|
|
</dependency>
|
2024-08-07 10:21:35 +02:00
|
|
|
|
|
|
|
<!-- Web Dependencies -->
|
2024-08-06 21:48:15 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<version>3.3.2</version>
|
|
|
|
</dependency>
|
2024-08-07 00:38:48 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-json</artifactId>
|
|
|
|
<version>3.3.2</version>
|
|
|
|
</dependency>
|
2024-08-07 21:14:19 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
<version>3.3.2</version>
|
|
|
|
</dependency>
|
2024-08-06 23:57:50 +02:00
|
|
|
|
2024-08-07 21:14:19 +02:00
|
|
|
<!-- Security and Auth -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
<version>3.3.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
<artifactId>jjwt-api</artifactId>
|
|
|
|
<version>0.11.5</version>
|
|
|
|
</dependency>
|
2024-08-06 23:57:50 +02:00
|
|
|
<dependency>
|
2024-08-07 21:14:19 +02:00
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
<artifactId>jjwt-impl</artifactId>
|
|
|
|
<version>0.11.5</version>
|
2024-08-06 23:57:50 +02:00
|
|
|
</dependency>
|
2024-08-07 21:14:19 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
<artifactId>jjwt-jackson</artifactId>
|
|
|
|
<version>0.11.5</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Database Dependencies -->
|
2024-08-06 23:57:50 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
<version>42.7.3</version>
|
|
|
|
</dependency>
|
2024-08-06 20:01:23 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|