티스토리 뷰
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 results
728x90
'Side Technologies' 카테고리의 다른 글
Kafka : 기본 2 (0) | 2020.09.13 |
---|---|
Kafka : 기본 1 (0) | 2020.09.13 |
Linux : .bash_aliases (0) | 2020.08.27 |
Tools : Github에서 폴더 삭제하기 (0) | 2020.08.21 |
Linux : Standand Input/Output (0) | 2020.08.20 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
- 도커 개발환경 참고
- AWS ARN 구조
- Immuability에 관한 설명
- 자바스크립트 멀티 비동기 함수 호출 참고
- WSDL 참고
- SOAP 컨슈머 참고
- MySql dump 사용법
- AWS Lambda with Addon
- NFC 드라이버 linux 설치
- electron IPC
- mifare classic 강의
- go module 관련 상세한 정보
- C 메모리 찍어보기
- C++ Addon 마이그레이션
- JAX WS Header 관련 stackoverflow
- SOAP Custom Header 설정 참고
- SOAP Custom Header
- SOAP BindingProvider
- dispatcher 사용하여 설정
- vagrant kvm으로 사용하기
- git fork, pull request to the …
- vagrant libvirt bridge network
- python, js의 async, await의 차이
- go JSON struct 생성
- Netflix Kinesis 활용 분석
- docker credential problem
- private subnet에서 outbound IP 확…
- 안드로이드 coroutine
- kotlin with, apply, also 등
- 안드로이드 초기로딩이 안되는 경우
- navigation 데이터 보내기
- 레이스 컨디션 navController
- raylib
TAG
- one-to-one
- Angular
- one-to-many
- 상속
- 스프링부트
- 스프링
- Validation
- Many-To-Many
- 로그인
- WebMvc
- RestTemplate
- 매핑
- Spring
- 외부파일
- 하이버네이트
- MYSQL
- login
- crud
- Spring Security
- hibernate
- mapping
- 자바
- 설정
- form
- spring boot
- Security
- XML
- 설정하기
- Rest
- jsp
250x250