mirror of
https://github.com/jlengrand/dialogflow-fun.git
synced 2026-03-10 08:11:22 +00:00
41 lines
1.0 KiB
YAML
41 lines
1.0 KiB
YAML
# Java Maven CircleCI 2.0 configuration file
|
|
#
|
|
# Check https://circleci.com/docs/2.0/language-java/ for more details
|
|
#
|
|
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
# Full list here : https://circleci.com/docs/2.0/docker-image-tags.json
|
|
- image: circleci/openjdk:11-jdk
|
|
|
|
# Specify service dependencies here if necessary
|
|
# CircleCI maintains a library of pre-built images
|
|
# documented at https://circleci.com/docs/2.0/circleci-images/
|
|
|
|
working_directory: ~/repo
|
|
|
|
environment:
|
|
# Customize the JVM maximum heap limit
|
|
MAVEN_OPTS: -Xmx3200m
|
|
|
|
steps:
|
|
- checkout
|
|
|
|
# Download and cache dependencies
|
|
- restore_cache:
|
|
keys:
|
|
- v1-dependencies-{{ checksum "pom.xml" }}
|
|
# fallback to using the latest cache if no exact match is found
|
|
- v1-dependencies-
|
|
|
|
- run: mvn dependency:go-offline
|
|
|
|
- save_cache:
|
|
paths:
|
|
- ~/.m2
|
|
key: v1-dependencies-{{ checksum "pom.xml" }}
|
|
|
|
# Compile!!
|
|
- run: mvn clean install
|