81 lines
2.8 KiB
XML
81 lines
2.8 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
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>
|
||
|
<parent>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
<version>3.3.3</version>
|
||
|
<relativePath/>
|
||
|
</parent>
|
||
|
|
||
|
<!-- Project Details -->
|
||
|
<groupId>me.braydon</groupId>
|
||
|
<artifactId>API</artifactId>
|
||
|
<version>1.0.0</version>
|
||
|
|
||
|
<!-- Properties -->
|
||
|
<properties>
|
||
|
<java.version>17</java.version>
|
||
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
||
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<!-- Build Config -->
|
||
|
<build>
|
||
|
<finalName>${project.artifactId}</finalName>
|
||
|
<plugins>
|
||
|
<!-- Spring -->
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>build-info</id>
|
||
|
<goals>
|
||
|
<goal>build-info</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<additionalProperties>
|
||
|
<description>${project.description}</description>
|
||
|
</additionalProperties>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<!-- Dependencies -->
|
||
|
<dependencies>
|
||
|
<!-- Spring -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Libraries -->
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.18.34</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Error Reporting & Metrics -->
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>io.sentry</groupId>-->
|
||
|
<!-- <artifactId>sentry-spring-boot-starter-jakarta</artifactId>-->
|
||
|
<!-- <version>8.0.0-alpha.4</version>-->
|
||
|
<!-- <scope>compile</scope>-->
|
||
|
<!-- </dependency>-->
|
||
|
<dependency>
|
||
|
<groupId>org.questdb</groupId>
|
||
|
<artifactId>questdb</artifactId>
|
||
|
<version>8.1.1</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|