Side Technologies
Tools : CircleCi gradle / maven 설정 파일 Java 11
Korean Eagle
2020. 8. 29. 06:34
728x90
1. 나중에 필요할 때 붙여 쓸려고 붙여 놓는다.
1-1 gradle 파일
# Java Gradle CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-java/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/openjdk:11-browsers-legacy
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory: ~/repo
environment:
# Customize the JVM maximum heap limit
JVM_OPTS: -Xmx3200m
TERM: dumb
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "build.gradle" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: gradle dependencies
- save_cache:
paths:
- ~/.gradle
key: v1-dependencies-{{ checksum "build.gradle" }}
# run tests!
- run: gradle clean test
1-2 maven 파일
version: 2.1
orbs:
maven: circleci/maven@1.0.1
workflows:
maven_test:
jobs:
- maven/test # checkout, build, test, and upload test results728x90