Skip to content

Instantly share code, notes, and snippets.

@AlejandroSoftwareDeveloper
AlejandroSoftwareDeveloper / justfile
Last active May 18, 2024 21:02
Justfile configuration for java
set shell := ["powershell.exe", "-c"]
default: build run
build:
mvn install
run: build
java -jar ./target/SpringApi-0.0.1-SNAPSHOT.jar
@AlejandroSoftwareDeveloper
AlejandroSoftwareDeveloper / pom.xml
Last active May 18, 2024 20:45
My pom.xml spring boot dependencies
<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>