[go: nahoru, domu]

Skip to content

JVM (java / kotlin) starter using Gradle / Maven build tools.

License

Notifications You must be signed in to change notification settings

daggerok/main-starter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

main-starter Build Status

Spring Boot Java starter using Gradle / Maven build tools.

getting started

git clone -b spring-boot --depth=1 https://github.com/daggerok/main-starter.git
cd main-starter
rm -rf .git

maven

fat jar

./mvnw package
java -jar target/*.jar

project sources archive

find archive with all project sources in target folder too:

./mvnw assembly:single -Dassembly.ignoreMissingDescriptor
unzip -d target/sources target/*-sources.zip
unzip -d target/default target/*-src.zip

JVM (java / kotlin) starter using Gradle / Maven build tools.

gradle

fat jar

./gradlew build
java -jar build/libs/*.jar

project sources archive

to create archive with all project sources use gradle sources task, like so:

./gradlew sources
unzip -d build/sources build/*.zip

NOTE: This project has been based on GitHub: daggerok/main-starter