Cannot start gradle built project on eclipse tomcat (multi project build)
Here are my project structure (roughly) :
|root1
| projA
|build.gradle
| projB
|build.gradle
| build.gradle
| gradle.setting
|root2
| projC
|build.gradle
and so on...
It is a multi-project build gradle project (actually I was not using gradle before, and I am just converting from a non-gradle project to a gradle project, if this is relevant)
My root1 and root2 gradle setting is just like :
plugins{
id "java"
id "eclipse-wtp" //I read somewhere that in order to integrate with eclipse tomcat server, one must have this
}
dependendencies{...}
project(':projA'){
apply plugin: 'eclipse-wtp'
}
project(':projB'){
apply plugin: 'eclipse-wtp'
}
And inside root1/settings.gradle
:
include ':projA', ':projB'
Everything works fine with gretty, tomcatRun task, but it doesnt ease the work of other developer, because previously we ran debug mode from server configuration (1 click away), I understand that with gretty and built-in gradle tomcat I can debug through debug configuration->remote debugging
My real question is, what did I do wrong because when I tried running the server through eclipse server configuration there are a lot of missing dependencies (which I specified in project(':projA') dependency), somehow it does not getting the libraries from gradle caches (I check the build path, and all the library are all there but thus not included when running my server
(PS : I am referring about eclipse tomcat server, not tomcat plugin on gradle)
**missing class image
java eclipse tomcat gradle eclipse-wtp
add a comment |
Here are my project structure (roughly) :
|root1
| projA
|build.gradle
| projB
|build.gradle
| build.gradle
| gradle.setting
|root2
| projC
|build.gradle
and so on...
It is a multi-project build gradle project (actually I was not using gradle before, and I am just converting from a non-gradle project to a gradle project, if this is relevant)
My root1 and root2 gradle setting is just like :
plugins{
id "java"
id "eclipse-wtp" //I read somewhere that in order to integrate with eclipse tomcat server, one must have this
}
dependendencies{...}
project(':projA'){
apply plugin: 'eclipse-wtp'
}
project(':projB'){
apply plugin: 'eclipse-wtp'
}
And inside root1/settings.gradle
:
include ':projA', ':projB'
Everything works fine with gretty, tomcatRun task, but it doesnt ease the work of other developer, because previously we ran debug mode from server configuration (1 click away), I understand that with gretty and built-in gradle tomcat I can debug through debug configuration->remote debugging
My real question is, what did I do wrong because when I tried running the server through eclipse server configuration there are a lot of missing dependencies (which I specified in project(':projA') dependency), somehow it does not getting the libraries from gradle caches (I check the build path, and all the library are all there but thus not included when running my server
(PS : I am referring about eclipse tomcat server, not tomcat plugin on gradle)
**missing class image
java eclipse tomcat gradle eclipse-wtp
add a comment |
Here are my project structure (roughly) :
|root1
| projA
|build.gradle
| projB
|build.gradle
| build.gradle
| gradle.setting
|root2
| projC
|build.gradle
and so on...
It is a multi-project build gradle project (actually I was not using gradle before, and I am just converting from a non-gradle project to a gradle project, if this is relevant)
My root1 and root2 gradle setting is just like :
plugins{
id "java"
id "eclipse-wtp" //I read somewhere that in order to integrate with eclipse tomcat server, one must have this
}
dependendencies{...}
project(':projA'){
apply plugin: 'eclipse-wtp'
}
project(':projB'){
apply plugin: 'eclipse-wtp'
}
And inside root1/settings.gradle
:
include ':projA', ':projB'
Everything works fine with gretty, tomcatRun task, but it doesnt ease the work of other developer, because previously we ran debug mode from server configuration (1 click away), I understand that with gretty and built-in gradle tomcat I can debug through debug configuration->remote debugging
My real question is, what did I do wrong because when I tried running the server through eclipse server configuration there are a lot of missing dependencies (which I specified in project(':projA') dependency), somehow it does not getting the libraries from gradle caches (I check the build path, and all the library are all there but thus not included when running my server
(PS : I am referring about eclipse tomcat server, not tomcat plugin on gradle)
**missing class image
java eclipse tomcat gradle eclipse-wtp
Here are my project structure (roughly) :
|root1
| projA
|build.gradle
| projB
|build.gradle
| build.gradle
| gradle.setting
|root2
| projC
|build.gradle
and so on...
It is a multi-project build gradle project (actually I was not using gradle before, and I am just converting from a non-gradle project to a gradle project, if this is relevant)
My root1 and root2 gradle setting is just like :
plugins{
id "java"
id "eclipse-wtp" //I read somewhere that in order to integrate with eclipse tomcat server, one must have this
}
dependendencies{...}
project(':projA'){
apply plugin: 'eclipse-wtp'
}
project(':projB'){
apply plugin: 'eclipse-wtp'
}
And inside root1/settings.gradle
:
include ':projA', ':projB'
Everything works fine with gretty, tomcatRun task, but it doesnt ease the work of other developer, because previously we ran debug mode from server configuration (1 click away), I understand that with gretty and built-in gradle tomcat I can debug through debug configuration->remote debugging
My real question is, what did I do wrong because when I tried running the server through eclipse server configuration there are a lot of missing dependencies (which I specified in project(':projA') dependency), somehow it does not getting the libraries from gradle caches (I check the build path, and all the library are all there but thus not included when running my server
(PS : I am referring about eclipse tomcat server, not tomcat plugin on gradle)
**missing class image
java eclipse tomcat gradle eclipse-wtp
java eclipse tomcat gradle eclipse-wtp
asked Nov 13 '18 at 4:09
thegexploitthegexploit
223
223
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53273667%2fcannot-start-gradle-built-project-on-eclipse-tomcat-multi-project-build%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53273667%2fcannot-start-gradle-built-project-on-eclipse-tomcat-multi-project-build%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown