How to embed my groovy application in Java without groovy-all-2.5.6.jar?Groovy, Netbeans and Java EEHow do I convert a Groovy String collection to a Java String Array?Embed Groovy in an Android Java AppError loading Groovy config file from JARCreate API in Groovy for JavaRun javac compiled groovy code using java?How to create a groovy jar with eclipse/ggts?Executing Groovy scripts embed in Java on runtime for AndroidExtracting groovy jar
State-of-the-art algorithms for solving linear programming problems
Is it possible to perform a regression where you have an unknown / unknowable feature variable?
Would this system work to purify water?
What is the difference between "Grippe" and "Männergrippe"?
Do they have Supervillain(s)?
Pythagorean triple with hypotenuse a power of 2
What to say to a student who has failed?
Architectural feasibility of a tiered circular stone keep
Why were the crew so desperate to catch Truman and return him to Seahaven?
Proving that a linear transformation is diagonalisable
Shouldn't the "credit score" prevent Americans from going deeper and deeper into personal debt?
Is there any way to keep a player from killing an NPC?
Why does The Ancient One think differently about Doctor Strange in Endgame than the film Doctor Strange?
Is there any practical application for performing a double Fourier transform? ...or an inverse Fourier transform on a time-domain input?
Is immersion of utensils (tevila) valid before koshering (hagala)?
Which household object drew this pattern?
Are the players on the same team as the DM?
Did a flight controller ever answer Flight with a no-go?
Can a Rogue PC teach an NPC to perform Sneak Attack?
Nothing like a good ol' game of ModTen
Is for(( ... )) ... ; a valid shell syntax? In which shells?
Is "The life is beautiful" incorrect or just very non-idiomatic?
How to respectfully refuse to assist co-workers with IT issues?
Was there ever a treaty between 2 entities with significantly different translations to the detriment of one party?
How to embed my groovy application in Java without groovy-all-2.5.6.jar?
Groovy, Netbeans and Java EEHow do I convert a Groovy String collection to a Java String Array?Embed Groovy in an Android Java AppError loading Groovy config file from JARCreate API in Groovy for JavaRun javac compiled groovy code using java?How to create a groovy jar with eclipse/ggts?Executing Groovy scripts embed in Java on runtime for AndroidExtracting groovy jar
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
With groovy 2.4.1 I'm used to integrate my groovy code in a Java application by adding the groovy-all-2.4.1.jar to the class path. When switching to groovy 2.5.6 I found in the doc that thanks to Java 9 the groovy-all-2.5.6.jar is no longer available at all. I found no doc how to embed groovy instead.
groovy
add a comment |
With groovy 2.4.1 I'm used to integrate my groovy code in a Java application by adding the groovy-all-2.4.1.jar to the class path. When switching to groovy 2.5.6 I found in the doc that thanks to Java 9 the groovy-all-2.5.6.jar is no longer available at all. I found no doc how to embed groovy instead.
groovy
add a comment |
With groovy 2.4.1 I'm used to integrate my groovy code in a Java application by adding the groovy-all-2.4.1.jar to the class path. When switching to groovy 2.5.6 I found in the doc that thanks to Java 9 the groovy-all-2.5.6.jar is no longer available at all. I found no doc how to embed groovy instead.
groovy
With groovy 2.4.1 I'm used to integrate my groovy code in a Java application by adding the groovy-all-2.4.1.jar to the class path. When switching to groovy 2.5.6 I found in the doc that thanks to Java 9 the groovy-all-2.5.6.jar is no longer available at all. I found no doc how to embed groovy instead.
groovy
groovy
asked Mar 27 at 17:28
axlaxl
11 bronze badge
11 bronze badge
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The jar is still available; you can download it.
I assume what you really mean is that you can't get it from the Maven repo:
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.5.0</version>
<type>pom</type>
</dependency>
Note the <type>
element.
the single jar is not available in repository... it seems now it's combined from dependencies. central.maven.org/maven2/org/codehaus/groovy/groovy-all/2.5.0
– daggett
Mar 27 at 17:40
I could not find the jar to download it. I'm not used to Maven, I'm still using pure ANT. Can I use the Maven POM to integrate the code somehow, to be able to distribute my application?
– axl
Mar 27 at 17:50
@axl groovy.apache.org/download.html But managing dependencies by hand is a really bad idea; hopefully you're at least using Ivy.
– Dave Newton
Mar 27 at 18:19
Thanks for your help. Looks like I have to change my project setup :-)
– axl
Mar 27 at 19:38
add a comment |
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%2f55383272%2fhow-to-embed-my-groovy-application-in-java-without-groovy-all-2-5-6-jar%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The jar is still available; you can download it.
I assume what you really mean is that you can't get it from the Maven repo:
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.5.0</version>
<type>pom</type>
</dependency>
Note the <type>
element.
the single jar is not available in repository... it seems now it's combined from dependencies. central.maven.org/maven2/org/codehaus/groovy/groovy-all/2.5.0
– daggett
Mar 27 at 17:40
I could not find the jar to download it. I'm not used to Maven, I'm still using pure ANT. Can I use the Maven POM to integrate the code somehow, to be able to distribute my application?
– axl
Mar 27 at 17:50
@axl groovy.apache.org/download.html But managing dependencies by hand is a really bad idea; hopefully you're at least using Ivy.
– Dave Newton
Mar 27 at 18:19
Thanks for your help. Looks like I have to change my project setup :-)
– axl
Mar 27 at 19:38
add a comment |
The jar is still available; you can download it.
I assume what you really mean is that you can't get it from the Maven repo:
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.5.0</version>
<type>pom</type>
</dependency>
Note the <type>
element.
the single jar is not available in repository... it seems now it's combined from dependencies. central.maven.org/maven2/org/codehaus/groovy/groovy-all/2.5.0
– daggett
Mar 27 at 17:40
I could not find the jar to download it. I'm not used to Maven, I'm still using pure ANT. Can I use the Maven POM to integrate the code somehow, to be able to distribute my application?
– axl
Mar 27 at 17:50
@axl groovy.apache.org/download.html But managing dependencies by hand is a really bad idea; hopefully you're at least using Ivy.
– Dave Newton
Mar 27 at 18:19
Thanks for your help. Looks like I have to change my project setup :-)
– axl
Mar 27 at 19:38
add a comment |
The jar is still available; you can download it.
I assume what you really mean is that you can't get it from the Maven repo:
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.5.0</version>
<type>pom</type>
</dependency>
Note the <type>
element.
The jar is still available; you can download it.
I assume what you really mean is that you can't get it from the Maven repo:
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.5.0</version>
<type>pom</type>
</dependency>
Note the <type>
element.
answered Mar 27 at 17:33
Dave NewtonDave Newton
144k20 gold badges220 silver badges260 bronze badges
144k20 gold badges220 silver badges260 bronze badges
the single jar is not available in repository... it seems now it's combined from dependencies. central.maven.org/maven2/org/codehaus/groovy/groovy-all/2.5.0
– daggett
Mar 27 at 17:40
I could not find the jar to download it. I'm not used to Maven, I'm still using pure ANT. Can I use the Maven POM to integrate the code somehow, to be able to distribute my application?
– axl
Mar 27 at 17:50
@axl groovy.apache.org/download.html But managing dependencies by hand is a really bad idea; hopefully you're at least using Ivy.
– Dave Newton
Mar 27 at 18:19
Thanks for your help. Looks like I have to change my project setup :-)
– axl
Mar 27 at 19:38
add a comment |
the single jar is not available in repository... it seems now it's combined from dependencies. central.maven.org/maven2/org/codehaus/groovy/groovy-all/2.5.0
– daggett
Mar 27 at 17:40
I could not find the jar to download it. I'm not used to Maven, I'm still using pure ANT. Can I use the Maven POM to integrate the code somehow, to be able to distribute my application?
– axl
Mar 27 at 17:50
@axl groovy.apache.org/download.html But managing dependencies by hand is a really bad idea; hopefully you're at least using Ivy.
– Dave Newton
Mar 27 at 18:19
Thanks for your help. Looks like I have to change my project setup :-)
– axl
Mar 27 at 19:38
the single jar is not available in repository... it seems now it's combined from dependencies. central.maven.org/maven2/org/codehaus/groovy/groovy-all/2.5.0
– daggett
Mar 27 at 17:40
the single jar is not available in repository... it seems now it's combined from dependencies. central.maven.org/maven2/org/codehaus/groovy/groovy-all/2.5.0
– daggett
Mar 27 at 17:40
I could not find the jar to download it. I'm not used to Maven, I'm still using pure ANT. Can I use the Maven POM to integrate the code somehow, to be able to distribute my application?
– axl
Mar 27 at 17:50
I could not find the jar to download it. I'm not used to Maven, I'm still using pure ANT. Can I use the Maven POM to integrate the code somehow, to be able to distribute my application?
– axl
Mar 27 at 17:50
@axl groovy.apache.org/download.html But managing dependencies by hand is a really bad idea; hopefully you're at least using Ivy.
– Dave Newton
Mar 27 at 18:19
@axl groovy.apache.org/download.html But managing dependencies by hand is a really bad idea; hopefully you're at least using Ivy.
– Dave Newton
Mar 27 at 18:19
Thanks for your help. Looks like I have to change my project setup :-)
– axl
Mar 27 at 19:38
Thanks for your help. Looks like I have to change my project setup :-)
– axl
Mar 27 at 19:38
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
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%2f55383272%2fhow-to-embed-my-groovy-application-in-java-without-groovy-all-2-5-6-jar%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