Skip to content
Snippets Groups Projects
Commit 4ddba7e7 authored by Hugo CAUPERT's avatar Hugo CAUPERT
Browse files

batman commit

parents
No related merge requests found
Pipeline #94701 failed
HELP.md
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/
pom.xml 0 → 100644
<?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>
package io.takima.temporalpractice;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class TemporalPracticeApplication {
private static final Logger log = LoggerFactory.getLogger(TemporalPracticeApplication.class);
public static void main(String[] args) {
log.info("Hello World!");
}
}
spring:
application:
name: Temporal Practice
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment