반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- java version
- springboottest
- aws
- AWS CLI
- maybe not public or not valid?
- LeetCode
- JUnit
- No tests found for given includes
- java 여러개 버전
- springbatch error
- property or field 'jobparameters' cannot be found on object of type
- 스프링부트테스트
- yum install java
- springboot
- log error
- java 1.8 11
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- Java 1.8
- mac os git error
- querydsl no sources given
- OpenFeign
- java 11
- error
- no sources given
- el1008e
- easy
- Medium
- java 버전 변경
- parse
- java
Archives
- Today
- Total
쩨이엠 개발 블로그
Maven pom to gradle 본문
728x90
반응형
maven project로 pom.xml을 잘 쓰고 있다가 jib로 build할 때의 가이드가 gradle로 되어있어서.. 예.. 목마른 사람이 우물 파야죠…
바꿉시다…
뭔가 할일이 엄청 많을 줄 알았는데 한 번에 convert 하는 방법이 있었다
multi project인 경우 root pom에서 할 것
$ gradle init --type pom
Starting a Gradle Daemon (subsequent builds will be faster)
> Task :init
Maven to Gradle conversion is an incubating feature.
Get more help with your project: https://docs.gradle.org/6.5/userguide/migrating_from_maven.html
BUILD SUCCESSFUL in 5s
2 actionable tasks: 2 executed
===> settings.gradle과 build.gradle 탄생
——> multi project의 경우 그 밑의 build.gradle도 다 같이 탄생
build.gradle
/*
* This file was generated by the Gradle 'init' task.
*/
dependencies {
implementation project(':iot_my’)
implementation 'com.amazonaws:aws-iot-device-sdk-java:1.3.6'
implementation 'org.springframework.boot:spring-boot-starter-web:2.2.0.RELEASE'
compileOnly 'org.projectlombok:lombok:1.18.10'
annotationProcessor 'org.projectlombok:lombok:1.18.10'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.10.0'
implementation 'commons-codec:commons-codec:1.6'
implementation 'org.apache.commons:commons-lang3:3.3.1'
}
728x90
반응형
'개발 > Spring' 카테고리의 다른 글
[ Redis ] Redis 환경 간단하게 구축하기 (0) | 2020.09.16 |
---|---|
[ Spring boot] Could not resolve all files for configuration compileClasspath (0) | 2020.08.24 |
[ Spring ] spring init 초기화 메소드 @PostConstruct (0) | 2020.07.01 |
[ Spring ] Failed to determine a suitable driver class (0) | 2020.06.29 |
[ Spring ] SpringBoot test 순서 / 이름 정하기 (@TestMethodOrder / @DisplayName) (0) | 2020.05.20 |
Comments