Skip to content

Template project for the software engineering lab (ST lab)

Notifications You must be signed in to change notification settings

st-tu-dresden/kickstart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kickstart

The kickstart module is a template project to bootstrap the Java project in the Software Engineering lab. Each group’s repository is initialized with this template. It contains the following features:

  • a skeleton Java 17 web application based on Spring Boot and Salespoint framework (see src/main/java and src/test/java)

  • Asciidoc documentation templates in src/main/asciidoc

The repository layout

The repository follows the standard Maven project layout. Nearly all artifacts are stored in a subdirectory of src/:

src/
├── main/
│   ├── asciidoc/   -- Documentation of the development process and application (Asciidoc format)
│   ├── java/       -- Main source code of the application, separated into packages
│   └── resources/  -- Static assets (images, stylesheets), Thymeleaf templates, etc.
└── test/
    └── java/       -- Source code of JUnit tests is stored separately

Pro tip: In GitHub, press t and a "fuzzy file finder" will appear, making it easy to navigate to a file.

How to run the application?

  • In the IDE: find Application.java, right-click project, select "Run As > Java Application"

  • From the command line: run ./mvnw spring-boot:run

How to package the application?

  • Run ./mvnw clean package. The packaged application (a JAR in target/) can be run with java -jar $jarName.

About

Template project for the software engineering lab (ST lab)

Resources

Stars

Watchers

Forks

Packages

No packages published