Compile typescript to javascript using Maven [duplicate]
This question already has an answer here:
How to deploy a node.js app with maven?
3 answers
I have a backend application which is running on Tomcat. Currently the project is build using Maven.
I am planning to use typescript in the project. Can we compile Typescript to javascript using Maven. Is there any trusted plugins are available to be used with Maven?
javascript java typescript maven tomcat
marked as duplicate by Dawood ibn Kareem, Neil Lunn, Bunyamin Coskuner, Raedwald
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 23 '18 at 10:13
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
How to deploy a node.js app with maven?
3 answers
I have a backend application which is running on Tomcat. Currently the project is build using Maven.
I am planning to use typescript in the project. Can we compile Typescript to javascript using Maven. Is there any trusted plugins are available to be used with Maven?
javascript java typescript maven tomcat
marked as duplicate by Dawood ibn Kareem, Neil Lunn, Bunyamin Coskuner, Raedwald
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 23 '18 at 10:13
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
stackoverflow.com/questions/17103748/…
– Jai
Nov 23 '18 at 7:02
add a comment |
This question already has an answer here:
How to deploy a node.js app with maven?
3 answers
I have a backend application which is running on Tomcat. Currently the project is build using Maven.
I am planning to use typescript in the project. Can we compile Typescript to javascript using Maven. Is there any trusted plugins are available to be used with Maven?
javascript java typescript maven tomcat
This question already has an answer here:
How to deploy a node.js app with maven?
3 answers
I have a backend application which is running on Tomcat. Currently the project is build using Maven.
I am planning to use typescript in the project. Can we compile Typescript to javascript using Maven. Is there any trusted plugins are available to be used with Maven?
This question already has an answer here:
How to deploy a node.js app with maven?
3 answers
javascript java typescript maven tomcat
javascript java typescript maven tomcat
edited Nov 23 '18 at 6:59
Shane
asked Nov 23 '18 at 6:48
ShaneShane
11
11
marked as duplicate by Dawood ibn Kareem, Neil Lunn, Bunyamin Coskuner, Raedwald
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 23 '18 at 10:13
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by Dawood ibn Kareem, Neil Lunn, Bunyamin Coskuner, Raedwald
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 23 '18 at 10:13
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
stackoverflow.com/questions/17103748/…
– Jai
Nov 23 '18 at 7:02
add a comment |
stackoverflow.com/questions/17103748/…
– Jai
Nov 23 '18 at 7:02
stackoverflow.com/questions/17103748/…
– Jai
Nov 23 '18 at 7:02
stackoverflow.com/questions/17103748/…
– Jai
Nov 23 '18 at 7:02
add a comment |
1 Answer
1
active
oldest
votes
I use Java and Typescript in a combined project too, but I can only recommend to use for every eco-system their own build and dependency project.
Node/Angular/Typescript and Java have different life cycle phases and a completely different dependency management. Because both have their own problems I would avoid to mix them with Maven.
What I am doing is to combine both build systems over a CI. This triggers both builds and take care that all different artifacts are built to the same time.
Is it like having a front end build separately and host it in webserver and backend build running a tomcat application server?
– Shane
Nov 26 '18 at 5:00
Yes, but in the mentioned projects are full Java back-ends and Typescript client-libraries for the front-end provided. The libraries have match with the servers. Finally the TS client libraries a included into complete separated GUI projects.
– OkieOth
Nov 26 '18 at 7:31
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I use Java and Typescript in a combined project too, but I can only recommend to use for every eco-system their own build and dependency project.
Node/Angular/Typescript and Java have different life cycle phases and a completely different dependency management. Because both have their own problems I would avoid to mix them with Maven.
What I am doing is to combine both build systems over a CI. This triggers both builds and take care that all different artifacts are built to the same time.
Is it like having a front end build separately and host it in webserver and backend build running a tomcat application server?
– Shane
Nov 26 '18 at 5:00
Yes, but in the mentioned projects are full Java back-ends and Typescript client-libraries for the front-end provided. The libraries have match with the servers. Finally the TS client libraries a included into complete separated GUI projects.
– OkieOth
Nov 26 '18 at 7:31
add a comment |
I use Java and Typescript in a combined project too, but I can only recommend to use for every eco-system their own build and dependency project.
Node/Angular/Typescript and Java have different life cycle phases and a completely different dependency management. Because both have their own problems I would avoid to mix them with Maven.
What I am doing is to combine both build systems over a CI. This triggers both builds and take care that all different artifacts are built to the same time.
Is it like having a front end build separately and host it in webserver and backend build running a tomcat application server?
– Shane
Nov 26 '18 at 5:00
Yes, but in the mentioned projects are full Java back-ends and Typescript client-libraries for the front-end provided. The libraries have match with the servers. Finally the TS client libraries a included into complete separated GUI projects.
– OkieOth
Nov 26 '18 at 7:31
add a comment |
I use Java and Typescript in a combined project too, but I can only recommend to use for every eco-system their own build and dependency project.
Node/Angular/Typescript and Java have different life cycle phases and a completely different dependency management. Because both have their own problems I would avoid to mix them with Maven.
What I am doing is to combine both build systems over a CI. This triggers both builds and take care that all different artifacts are built to the same time.
I use Java and Typescript in a combined project too, but I can only recommend to use for every eco-system their own build and dependency project.
Node/Angular/Typescript and Java have different life cycle phases and a completely different dependency management. Because both have their own problems I would avoid to mix them with Maven.
What I am doing is to combine both build systems over a CI. This triggers both builds and take care that all different artifacts are built to the same time.
answered Nov 23 '18 at 7:08
OkieOthOkieOth
2,1231218
2,1231218
Is it like having a front end build separately and host it in webserver and backend build running a tomcat application server?
– Shane
Nov 26 '18 at 5:00
Yes, but in the mentioned projects are full Java back-ends and Typescript client-libraries for the front-end provided. The libraries have match with the servers. Finally the TS client libraries a included into complete separated GUI projects.
– OkieOth
Nov 26 '18 at 7:31
add a comment |
Is it like having a front end build separately and host it in webserver and backend build running a tomcat application server?
– Shane
Nov 26 '18 at 5:00
Yes, but in the mentioned projects are full Java back-ends and Typescript client-libraries for the front-end provided. The libraries have match with the servers. Finally the TS client libraries a included into complete separated GUI projects.
– OkieOth
Nov 26 '18 at 7:31
Is it like having a front end build separately and host it in webserver and backend build running a tomcat application server?
– Shane
Nov 26 '18 at 5:00
Is it like having a front end build separately and host it in webserver and backend build running a tomcat application server?
– Shane
Nov 26 '18 at 5:00
Yes, but in the mentioned projects are full Java back-ends and Typescript client-libraries for the front-end provided. The libraries have match with the servers. Finally the TS client libraries a included into complete separated GUI projects.
– OkieOth
Nov 26 '18 at 7:31
Yes, but in the mentioned projects are full Java back-ends and Typescript client-libraries for the front-end provided. The libraries have match with the servers. Finally the TS client libraries a included into complete separated GUI projects.
– OkieOth
Nov 26 '18 at 7:31
add a comment |
stackoverflow.com/questions/17103748/…
– Jai
Nov 23 '18 at 7:02