일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Logstash
- confluent
- statestore
- reactive
- gradle
- 한빛미디어
- kafkastream
- kafkastreams
- springboot
- Spring
- avo
- spring-kafka
- Slick
- kafka streams
- Kafka
- aws
- enablekafkastreams
- spring-batch
- RabbitMQ
- 플레이 프레임워크
- scala 2.10
- schema registry
- scala
- Elasticsearch
- coursera
- Elk
- 카프카
- play framework
- kafka interactive query
- spring-cloud-stream
- Today
- Total
b
maven to gradle 본문
gradle setupBuild
Build Failed.
--debug 로 보면 NullPointException NPE. 묻지마 gradle upgradle 한다. 1.6 -> 1.7
참고 : http://forums.gradle.org/gradle/topics/gradle_setupbuild_exception
setupBuild 는 3개의 type을 지원한다.
http://www.gradle.org/docs/current/userguide/build_setup_plugin.html
이중에서 내가 관심을 가져야 할것은 java-library 와 pom .
현재 프로젝트가 parent - pom project를 기본으로 여러 sub-project가 이루어져있기때문에 --type pom을 이용해야 할듯한 분위기. (type을 안붙이면 알아서 해주는 듯 해주면, 테스트 용으로 java-library로 진행을 해보고 확인을 해봐도 좋다. -난 해봤다-.-)
parent(pom project)에서 수행
gradle 관련 여러 배치 파일과 폴더 생성
console
그리고 build.gradle의 내용은 아래처럼 확인 된다.
apply plugin: 'java'
apply plugin: 'maven'
group = 'xxxx'
version = '1.0.0-SNAPSHOT'
description = """"""
sourceCompatibility = 1.6
targetCompatibility = 1.6
repositories {
mavenRepo url: "tem-maven-repository"
mavenRepo url: "http://repo.maven.apache.org/maven2"
}
dependencies {
compile group: 'ch.qos.logback', name: 'logback-classic', version:'1.0.13'
testCompile group: 'junit', name: 'junit', version:'4.8.2'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version:'1.3'
testCompile group: 'org.mockito', name: 'mockito-all', version:'1.9.5'
testCompile group: 'org.springframework', name: 'spring-test', version:'3.2.0.RELEASE'
}
gradle build
빌드를 하면 build/libs/XXXX-parent-version-SNAPSHOT.jar 파일이 있음을 확인 할 수 있다.
'gossip' 카테고리의 다른 글
이것저것 (0) | 2014.04.16 |
---|---|
maven to gradle (with 1.7 & NPE) (0) | 2013.08.28 |
mybatis DDL (0) | 2013.08.23 |
coursera - Startup Engineering (0) | 2013.06.26 |
Creative Programming for Digital Media & Mobile Apps week#1 (0) | 2013.06.16 |