Skip to content
Snippets Groups Projects
Select Git revision
  • 4ddba7e7a19b83abba9a5232cf27415610be52ef
  • main default protected
  • hugo
  • solution
  • test
  • damien
6 results

pom.xml

Blame
  • pom.xml 1.24 KiB
    <?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.4.3</version>
    		<relativePath/> <!-- lookup parent from repository -->
    	</parent>
    	<groupId>io.takima</groupId>
    	<artifactId>temporalpractice</artifactId>
    	<version>0.0.1-SNAPSHOT</version>
    	<name>temporalpractice</name>
    	<description>Practice Project for the Takima Temporal Training</description>
    	<url/>
    	<properties>
    		<java.version>21</java.version>
    	</properties>
    	<dependencies>
    		<dependency>
    			<groupId>org.springframework.boot</groupId>
    			<artifactId>spring-boot-starter</artifactId>
    		</dependency>
    
    		<dependency>
    			<groupId>org.springframework.boot</groupId>
    			<artifactId>spring-boot-starter-test</artifactId>
    			<scope>test</scope>
    		</dependency>
    	</dependencies>
    
    	<build>
    		<plugins>
    			<plugin>
    				<groupId>org.springframework.boot</groupId>
    				<artifactId>spring-boot-maven-plugin</artifactId>
    			</plugin>
    		</plugins>
    	</build>
    
    </project>