Fixed Byte Buddy version
All checks were successful
Gitea/swiss-backend/pipeline/head This commit looks good

This commit is contained in:
2025-10-08 21:50:06 +02:00
parent 46662ac553
commit 1ddb628b27

319
pom.xml
View File

@@ -1,32 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?> <?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" <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"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>3.5.6</version> <version>3.5.6</version>
<relativePath/> <!-- lookup parent from repository --> <relativePath/> <!-- lookup parent from repository -->
</parent> </parent>
<groupId>nl.connected-it</groupId> <groupId>nl.connected-it</groupId>
<artifactId>swiss-backend</artifactId> <artifactId>swiss-backend</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<name>swiss-backend</name> <name>swiss-backend</name>
<description>Swiss Backend</description> <description>Swiss Backend</description>
<properties> <properties>
<java.version>25</java.version> <java.version>25</java.version>
<maven.compiler.source>25</maven.compiler.source> <maven.compiler.source>25</maven.compiler.source>
<maven.compiler.target>25</maven.compiler.target> <maven.compiler.target>25</maven.compiler.target>
</properties> </properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId> <artifactId>spring-boot-starter-actuator</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId> <artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId> <artifactId>spring-boot-starter-security</artifactId>
@@ -40,137 +40,144 @@
<artifactId>java-jwt</artifactId> <artifactId>java-jwt</artifactId>
<version>4.5.0</version> <version>4.5.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.fasterxml.jackson.datatype</groupId> <groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-hibernate5-jakarta</artifactId> <artifactId>jackson-datatype-hibernate5-jakarta</artifactId>
<version>2.20.0</version> <version>2.20.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.h2database</groupId> <groupId>com.h2database</groupId>
<artifactId>h2</artifactId> <artifactId>h2</artifactId>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId> <artifactId>spring-boot-starter-security</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId> <artifactId>spring-boot-starter-web</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId> <artifactId>spring-boot-starter-validation</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId> <artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope> <scope>runtime</scope>
<optional>true</optional> <optional>true</optional>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.postgresql</groupId> <groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId> <artifactId>postgresql</artifactId>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.flywaydb</groupId> <groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId> <artifactId>flyway-core</artifactId>
<version>11.13.2</version> <version>11.13.2</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.flywaydb</groupId> <groupId>org.flywaydb</groupId>
<artifactId>flyway-database-postgresql</artifactId> <artifactId>flyway-database-postgresql</artifactId>
<version>11.13.2</version> <version>11.13.2</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId> <artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional> <optional>true</optional>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.projectlombok</groupId> <groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId> <artifactId>lombok</artifactId>
<!-- <optional>true</optional>--> <!-- <optional>true</optional>-->
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId> <artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.security</groupId> <groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId> <artifactId>spring-security-test</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.hibernate.orm.tooling</groupId> <groupId>org.hibernate.orm.tooling</groupId>
<artifactId>hibernate-enhance-maven-plugin</artifactId> <artifactId>hibernate-enhance-maven-plugin</artifactId>
<version>${hibernate.version}</version> <version>6.6.31.Final</version>
<executions> <executions>
<execution> <execution>
<id>enhance</id> <id>enhance</id>
<goals> <goals>
<goal>enhance</goal> <goal>enhance</goal>
</goals> </goals>
<configuration> <configuration>
<enableLazyInitialization>true</enableLazyInitialization> <enableLazyInitialization>true</enableLazyInitialization>
<enableDirtyTracking>true</enableDirtyTracking> <enableDirtyTracking>true</enableDirtyTracking>
<enableAssociationManagement>true</enableAssociationManagement> <enableAssociationManagement>true</enableAssociationManagement>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> <dependencies>
<plugin> <dependency>
<groupId>org.graalvm.buildtools</groupId> <groupId>net.bytebuddy</groupId>
<artifactId>native-maven-plugin</artifactId> <artifactId>byte-buddy</artifactId>
</plugin> <version>1.17.7</version>
<plugin> </dependency>
<groupId>org.springframework.boot</groupId> </dependencies>
<artifactId>spring-boot-maven-plugin</artifactId> </plugin>
<configuration> <plugin>
<excludes> <groupId>org.graalvm.buildtools</groupId>
<exclude> <artifactId>native-maven-plugin</artifactId>
<groupId>org.projectlombok</groupId> </plugin>
<artifactId>lombok</artifactId> <plugin>
</exclude> <groupId>org.springframework.boot</groupId>
</excludes> <artifactId>spring-boot-maven-plugin</artifactId>
</configuration> <configuration>
</plugin> <excludes>
<plugin> <exclude>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.projectlombok</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>lombok</artifactId>
<version>3.14.1</version> </exclude>
<configuration> </excludes>
<source>25</source> </configuration>
<target>25</target> </plugin>
<annotationProcessorPaths> <plugin>
<path> <groupId>org.apache.maven.plugins</groupId>
<groupId>org.projectlombok</groupId> <artifactId>maven-compiler-plugin</artifactId>
<artifactId>lombok</artifactId> <version>3.14.1</version>
<version>${lombok.version}</version> <configuration>
</path> <source>25</source>
</annotationProcessorPaths> <target>25</target>
</configuration> <annotationProcessorPaths>
</plugin> <path>
<plugin> <groupId>org.projectlombok</groupId>
<groupId>org.flywaydb</groupId> <artifactId>lombok</artifactId>
<artifactId>flyway-maven-plugin</artifactId> <version>${lombok.version}</version>
<version>11.13.2</version> </path>
<configuration> </annotationProcessorPaths>
<url>jdbc:postgresql://localhost:5432/swiss?currentSchema=swiss</url> </configuration>
<user>postgres</user> </plugin>
<password>postgres</password> <plugin>
</configuration> <groupId>org.flywaydb</groupId>
</plugin> <artifactId>flyway-maven-plugin</artifactId>
</plugins> <version>11.13.2</version>
<configuration>
<url>jdbc:postgresql://localhost:5432/swiss?currentSchema=swiss</url>
<user>postgres</user>
<password>postgres</password>
</configuration>
</plugin>
</plugins>
</build> </build>
</project> </project>