Compile typescript to javascript using Maven [duplicate]












0
















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?










share|improve this question















marked as duplicate by Dawood ibn Kareem, Neil Lunn, Bunyamin Coskuner, Raedwald java
Users with the  java badge can single-handedly close java questions as duplicates and reopen them as needed.

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
















0
















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?










share|improve this question















marked as duplicate by Dawood ibn Kareem, Neil Lunn, Bunyamin Coskuner, Raedwald java
Users with the  java badge can single-handedly close java questions as duplicates and reopen them as needed.

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














0












0








0









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?










share|improve this question

















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 java
Users with the  java badge can single-handedly close java questions as duplicates and reopen them as needed.

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 java
Users with the  java badge can single-handedly close java questions as duplicates and reopen them as needed.

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



















  • 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












1 Answer
1






active

oldest

votes


















0














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.






share|improve this answer
























  • 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


















1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














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.






share|improve this answer
























  • 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
















0














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.






share|improve this answer
























  • 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














0












0








0







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.






share|improve this answer













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.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 23 '18 at 7:08









OkieOthOkieOth

2,1981219




2,1981219













  • 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













  • 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





這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini