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;








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.










share|improve this question






























    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.










    share|improve this question


























      0












      0








      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.










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 27 at 17:28









      axlaxl

      11 bronze badge




      11 bronze badge

























          1 Answer
          1






          active

          oldest

          votes


















          1















          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.






          share|improve this answer

























          • 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










          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
          );



          );













          draft saved

          draft discarded


















          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









          1















          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.






          share|improve this answer

























          • 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















          1















          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.






          share|improve this answer

























          • 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













          1














          1










          1









          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.






          share|improve this answer













          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.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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

















          • 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








          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.



















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript