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 |
Tags
- 마스크
- java
- IOS
- 내장모니터끄기
- 포켓몬고
- 크롬
- Docker
- OSX
- aws
- 초미세먼지
- lb
- 미국은 또 시궁창
- ㅂㅅ 같은 삼성 노트북
- 사운드 설치
- 로드밸런싱
- 포켓몬고 플러스
- 앞으로 가기
- ubuntu-server
- 노트북 모니터 끄기
- 유투브 광고 우회
- 갤럭시북 사운드카드 설치
- PM 2.5
- tomcat
- 미세먼지
- Linux
- 포켓몬 고
- 공기청정기
- 코로나
- 광고없이 보기
- 클러스터링
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"
}
}