Created
March 13, 2025 12:29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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 https://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.2.4</version> | |
<relativePath/> | |
</parent> | |
<groupId>darktower</groupId> | |
<artifactId>solarflow</artifactId> | |
<version>0.0.5-SNAPSHOT</version> | |
<name>solarflow</name> | |
<description>SolarFlow Server Database</description> | |
<properties> | |
<java.version>21</java.version> <!-- ✅ Use Java 21 or 17 --> | |
</properties> | |
<dependencies> | |
<!-- Spring Boot and JPA --> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-data-jpa</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-web</artifactId> | |
</dependency> | |
<!-- Driver H2 --> | |
<dependency> | |
<groupId>com.h2database</groupId> | |
<artifactId>h2</artifactId> | |
<scope>runtime</scope> | |
</dependency> | |
<!-- Lombok f/ boilerplate --> | |
<dependency> | |
<groupId>org.projectlombok</groupId> | |
<artifactId>lombok</artifactId> | |
<version>1.18.30</version> <!-- ✅ Add Lombok version --> | |
<scope>provided</scope> | |
</dependency> | |
<!-- Tools Spring Boot --> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-test</artifactId> | |
<scope>test</scope> | |
</dependency> | |
<!-- Swagger --> | |
<dependency> | |
<groupId>org.springdoc</groupId> | |
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> | |
<version>2.3.0</version> <!-- ✅ Updated to match Spring Boot 3.2.4 --> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.11.0</version> <!-- ✅ Explicit version --> | |
<configuration> | |
<annotationProcessorPaths> | |
<path> | |
<groupId>org.projectlombok</groupId> | |
<artifactId>lombok</artifactId> | |
<version>1.18.30</version> <!-- ✅ Add version --> | |
</path> | |
</annotationProcessorPaths> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-maven-plugin</artifactId> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment