Initial Gradle commit with test properties, development properties, logging properties, lombok properties, and travis properties, and example Spring Boot classes and integration and unit tests
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
language: java
|
||||
install: true
|
||||
|
||||
sudo: false
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- oracle-java8-installer
|
||||
|
||||
before_install:
|
||||
- chmod +x gradlew
|
||||
|
||||
stages:
|
||||
- name: build
|
||||
- name: unitTest
|
||||
- name: integrationTest
|
||||
|
||||
jobs:
|
||||
include:
|
||||
- stage: build
|
||||
script: ./gradlew build
|
||||
- stage: unitTest
|
||||
script: ./gradlew test
|
||||
- stage: integrationTest
|
||||
script: ./gradlew integrationTest
|
||||
Reference in New Issue
Block a user