* refactor: Reorder tests without lambda Moves inner implementations of Answer and ArgumentMatcher to the top of the test classes. Also changes the lambda expression to a regular "pre java 8" expression in one of the tests. Resolves: BAEL-632 * feat: Create basic Monolithic JHipster project Commit just after creating a JHipster project, before making any modifications. Resolves: BAEL-137 * chore: Change the artifactId and name of the project From baeldung to jhipster-monolithic and JHipster Monolithic Application Relates to: BAEL-137 * feat: Create entities Post and Comment Relates to: BAEL-137 * feat: Fix Gatling configuration in pom.xml Relates to: BAEL-137 * feat: Add files for Continuous Integration Relates to: BAEL-137 * feat: Change pom.xml to conform to Baeldung standards - moved the <properties> element to the bottom of the file - excluded integration tests in the default surefire configuration - added a new profile, called integration, and added the integration tests there - added Java 8 in the <source> and <target> tags, under maven-compiler solves: BAEL-137 * chore: Add jhipster module to parent pom
42 lines
837 B
YAML
42 lines
837 B
YAML
os:
|
|
- linux
|
|
services:
|
|
- docker
|
|
language: node_js
|
|
node_js:
|
|
- "6.10.0"
|
|
jdk:
|
|
- oraclejdk8
|
|
sudo: false
|
|
cache:
|
|
directories:
|
|
- node
|
|
- node_modules
|
|
- $HOME/.m2
|
|
env:
|
|
global:
|
|
- NODE_VERSION=6.10.0
|
|
- SPRING_OUTPUT_ANSI_ENABLED=ALWAYS
|
|
- SPRING_JPA_SHOW_SQL=false
|
|
before_install:
|
|
- jdk_switcher use oraclejdk8
|
|
- java -version
|
|
- sudo /etc/init.d/mysql stop
|
|
- sudo /etc/init.d/postgresql stop
|
|
- nvm install $NODE_VERSION
|
|
- npm install -g npm
|
|
- node -v
|
|
- npm -v
|
|
install:
|
|
- npm install
|
|
script:
|
|
- chmod +x mvnw
|
|
- ./mvnw clean test
|
|
- npm test
|
|
- ./mvnw package -Pprod -DskipTests
|
|
notifications:
|
|
webhooks:
|
|
on_success: change # options: [always|never|change] default: always
|
|
on_failure: always # options: [always|never|change] default: always
|
|
on_start: false # default: false
|