Skip to content
Snippets Groups Projects
pom.xml 2.88 KiB
Newer Older
  • Learn to ignore specific revisions
  • <?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 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.1.5</version>
    	</parent>
    
    Tobias Ullerich's avatar
    Tobias Ullerich committed
    
    
    	<groupId>de.tobias</groupId>
    	<artifactId>playwall-server</artifactId>
    	<version>0.0.1-SNAPSHOT</version>
    
    Tobias Ullerich's avatar
    Tobias Ullerich committed
    
    
    	<name>playwall-server</name>
    	<description>PlayWall Server</description>
    
    Tobias Ullerich's avatar
    Tobias Ullerich committed
    
    
    Tobias Ullerich's avatar
    Tobias Ullerich committed
    		<java.version>17</java.version>
    
    
    		<snakeyaml.version>2.2</snakeyaml.version>
    
    	<dependencies>
    		<dependency>
    			<groupId>org.springframework.boot</groupId>
    			<artifactId>spring-boot-starter-web</artifactId>
    		</dependency>
    
    		<dependency>
    			<groupId>org.springframework.boot</groupId>
    			<artifactId>spring-boot-starter-webflux</artifactId>
    		</dependency>
    
    		<dependency>
    			<groupId>org.springframework.boot</groupId>
    			<artifactId>spring-boot-configuration-processor</artifactId>
    			<optional>true</optional>
    		</dependency>
    
    		<dependency>
    			<groupId>com.fasterxml.jackson.dataformat</groupId>
    			<artifactId>jackson-dataformat-yaml</artifactId>
    		</dependency>
    		<dependency>
    			<groupId>org.projectlombok</groupId>
    			<artifactId>lombok</artifactId>
    			<optional>true</optional>
    		</dependency>
    
    
    		<dependency>
    			<groupId>org.springframework.boot</groupId>
    			<artifactId>spring-boot-starter-test</artifactId>
    			<scope>test</scope>
    		</dependency>
    	</dependencies>
    
    	<build>
    		<plugins>
    			<plugin>
    				<groupId>org.graalvm.buildtools</groupId>
    				<artifactId>native-maven-plugin</artifactId>
    			</plugin>
    			<plugin>
    				<groupId>org.springframework.boot</groupId>
    				<artifactId>spring-boot-maven-plugin</artifactId>
    
    Tobias Ullerich's avatar
    Tobias Ullerich committed
    				<configuration>
    
    					<imageName>registry.thecodelabs.de/tobisan/playwall-server:${project.version}</imageName>
    
    Tobias Ullerich's avatar
    Tobias Ullerich committed
    				</configuration>
    
    
    	<distributionManagement>
    		<repository>
    			<id>release</id>
    			<name>Internal-release</name>
    			<url>https://maven.thecodelabs.de/artifactory/Internal-release</url>
    		</repository>
    		<snapshotRepository>
    			<id>snapshots</id>
    			<name>Internal-snapshots</name>
    			<url>https://maven.thecodelabs.de/artifactory/Internal-snapshots</url>
    		</snapshotRepository>
    	</distributionManagement>
    
    	<repositories>
    		<repository>
    			<id>release</id>
    			<url>https://maven.thecodelabs.de/artifactory/Releases</url>
    			<releases>
    				<enabled>true</enabled>
    			</releases>
    			<snapshots>
    				<enabled>false</enabled>
    			</snapshots>
    		</repository>
    		<repository>
    			<id>snapshots</id>
    			<url>https://maven.thecodelabs.de/artifactory/Snapshots</url>
    			<releases>
    				<enabled>false</enabled>
    			</releases>
    			<snapshots>
    				<enabled>true</enabled>
    			</snapshots>
    		</repository>
    	</repositories>