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 |
Tags
- ubuntu-server
- 포켓몬고 플러스
- 내장모니터끄기
- 코로나
- 포켓몬 고
- PM 2.5
- lb
- 공기청정기
- 클러스터링
- tomcat
- 유투브 광고 우회
- 포켓몬고
- Docker
- 노트북 모니터 끄기
- 사운드 설치
- Linux
- 크롬
- ㅂㅅ 같은 삼성 노트북
- OSX
- 앞으로 가기
- IOS
- java
- 로드밸런싱
- 마스크
- 미세먼지
- 광고없이 보기
- 미국은 또 시궁창
- 초미세먼지
- 갤럭시북 사운드카드 설치
- aws
Archives
- Today
- Total
살며사랑하며
eclipse gradle cargo 본문
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "com.bmuschko:gradle-cargo-plugin:2.2.3"
}
}
apply plugin: "java"
apply plugin: "war"
apply plugin: "com.bmuschko.cargo"
group = 'com.drawhan'
version = '1.0.1'
description = 'Project Description'
sourceCompatibility = 1.8
targetCompatibility = 1.8
//war.baseName = 'ROOT'
war.archiveName "ROOT.war"
project.webAppDirName = 'src/main/webapp'
configurations { providedCompile }
repositories {
maven { url "http://repo.maven.apache.org/maven2" }
maven { url "http://repo1.maven.org/maven2/" }
maven { url "http://repo.springsource.org/libs-milestone-local" }
}
cargo {
containerId = 'tomcat8x'
port = 8080
deployable {
context = '/'
}
remote {
hostname = 'localhost'
username = 'tomcat'
password = 'tomcat'
}
local {
homeDir = file('/PROJECT_DIR/build/libs')
outputFile = file('build/output.log')
timeout = 60000
containerProperties {
//property 'cargo.tomcat.ajp.port', 8009
}
}
}
dependencies {
def cargoVersion = '1.4.5'
cargo "org.codehaus.cargo:cargo-core-uberjar:$cargoVersion",
"org.codehaus.cargo:cargo-ant:$cargoVersion"
}
}
repositories {
jcenter()
}
dependencies {
classpath "com.bmuschko:gradle-cargo-plugin:2.2.3"
}
}
apply plugin: "java"
apply plugin: "war"
apply plugin: "com.bmuschko.cargo"
group = 'com.drawhan'
version = '1.0.1'
description = 'Project Description'
sourceCompatibility = 1.8
targetCompatibility = 1.8
//war.baseName = 'ROOT'
war.archiveName "ROOT.war"
project.webAppDirName = 'src/main/webapp'
configurations { providedCompile }
repositories {
maven { url "http://repo.maven.apache.org/maven2" }
maven { url "http://repo1.maven.org/maven2/" }
maven { url "http://repo.springsource.org/libs-milestone-local" }
}
cargo {
containerId = 'tomcat8x'
port = 8080
deployable {
context = '/'
}
remote {
hostname = 'localhost'
username = 'tomcat'
password = 'tomcat'
}
local {
homeDir = file('/PROJECT_DIR/build/libs')
outputFile = file('build/output.log')
timeout = 60000
containerProperties {
//property 'cargo.tomcat.ajp.port', 8009
}
}
}
dependencies {
def cargoVersion = '1.4.5'
cargo "org.codehaus.cargo:cargo-core-uberjar:$cargoVersion",
"org.codehaus.cargo:cargo-ant:$cargoVersion"
}
}