我有一个基于gradle的项目,我正在使用货物将战争部署到tomcat7。在另一个基于maven的项目中,我完全能够部署。我正在我的mac上运行这些项目。唯一的区别在于maven项目,这是配置:
<configuration>
<warFile>${basedir}/target/${project.build.finalName}.war</warFile>
<url>http://localhost:8080/manager</url>
<server>TomcatServer</server>
<path>/mypath</path>
</configuration>
但是在gradle中,货物部署到localhost:8080 /经理/文本,我认为这就是为什么我得到403.同样的构建文件在我的ubuntu上完全运行。
这是我的build.gradle:
apply plugin: 'cargo'
repositories {
mavenCentral()
}
buildscript {
repositories {
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
name = 'GitHub'
addArtifactPattern 'http://cloud.github.com/downloads/[organisation]/[module]/[module]-[revision].[ext]'
}
}
dependencies {
classpath 'bmuschko:gradle-cargo-plugin:0.3'
}
}
cargo {
containerId = 'tomcat7x'
port = 8080
context = 'mypath'
remote {
hostname = 'localhost'
username = 'username'
password = 'passwd'
}
}
dependencies {
cargo 'org.codehaus.cargo:cargo-core-uberjar:1.1.1',
'org.codehaus.cargo:cargo-ant:1.1.1',
'jaxen:jaxen:1.1.1'
}
在我的tomcat-users.xml中,我包含了manager,manager-script和manager-gui角色。我在这里错过了什么吗?