java.lang.NoClassDefFoundError: org/codehaus/groovy/runtime/typehandling/ShortTypeHandlingGroovy ShortTypeHandling ClassNotFoundExceptionScala vs. Groovy vs. ClojureCreating Maven plugin written in Groovy 1.8Maven: Groovy-Eclipse Compiler plugin with Groovy 2.3.5CAS4 Unsupported major.minor version 52.0groovy-eclipse-compiler does not show compiler errorSpring Boot 1.4.1 surefire plugin doesn't seem to work. Is there a way to override it from the parent pom?java.lang.NoClassDefFoundError: org/springframework/core/io/Resource ExceptionWhat is Compatible version for spring boot 2.0.5.RELEASE for maven-compiler-plugin, groovy-eclipse-batch & groovy.eclipse.compilerMaven build failed: Cannot resolve dependencies of product application.product
How to detect a failed AES256 decryption programmatically?
Why does current not increase when batteries connected in parallel?
Have made several mistakes during the course of my PhD. Can't help but feel resentment. Can I get some advice about how to move forward?
Does == actually work the same or different when comparing two primitives vs two Objects in Java?
"A y'vama acquires herself through chalitza", really?
Installing the original OS X version onto a Mac?
Earliest evidence of objects intended for future archaeologists?
Levenshtein Neighbours
Is there a commercial liquid with refractive index greater than n=2?
A reccomended structured approach to self studying music theory for songwriting
Eric Andre had a dream
Why should I pay for an SSL certificate?
What causes burn marks on the air handler in the attic?
Has there ever been a truly bilingual country prior to the contemporary period?
Do banks' profitability really suffer under low interest rates
Testing control surfaces pre flight; what feedback does pilot recieve?
Spongy green glass found on graves
Can I submit a paper computer science conference using an alias if using my real name can cause legal trouble in my original country
Gofer work in exchange for Letter of Recommendation
Is there a utility / method to organize trad gear so that each piece is immediately accessible?
Are there any OR challenges that are similar to kaggle's competitions?
Airline power sockets shut down when I plug my computer in. How can I avoid that?
Rotate List by K places
Reducing contention in thread-safe LruCache
java.lang.NoClassDefFoundError: org/codehaus/groovy/runtime/typehandling/ShortTypeHandling
Groovy ShortTypeHandling ClassNotFoundExceptionScala vs. Groovy vs. ClojureCreating Maven plugin written in Groovy 1.8Maven: Groovy-Eclipse Compiler plugin with Groovy 2.3.5CAS4 Unsupported major.minor version 52.0groovy-eclipse-compiler does not show compiler errorSpring Boot 1.4.1 surefire plugin doesn't seem to work. Is there a way to override it from the parent pom?java.lang.NoClassDefFoundError: org/springframework/core/io/Resource ExceptionWhat is Compatible version for spring boot 2.0.5.RELEASE for maven-compiler-plugin, groovy-eclipse-batch & groovy.eclipse.compilerMaven build failed: Cannot resolve dependencies of product application.product
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am running mvn clean install with the following plugin versionsjava 1.8
maven.compiler.source 1.8,maven.compiler.target 1.8,groovy.version 2.4.4,groovy-eclipse-compiler version 2.9.0-01,groovy-eclipse-batch version 2.3.4-01,plexus-compiler api version 2.2,allure version 1.4.16,maven version 3.1.1,surefire version 2.18.1
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<compilerId>groovy-eclipse-compiler</compilerId>
<source>1.8</source>
<target>1.8</target>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-compiler</artifactId>
<version>2.9.0-01</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-batch</artifactId>
<version>2.3.4-01</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-api</artifactId>
<version>2.2</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>groovy-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.3.5</version>
</dependency>
</dependencies>
</plugin>
I am not sure what to do now. Answers from stackoverflow like Groovy ShortTypeHandling ClassNotFoundException did not help me.
maven groovy plugins
add a comment |
I am running mvn clean install with the following plugin versionsjava 1.8
maven.compiler.source 1.8,maven.compiler.target 1.8,groovy.version 2.4.4,groovy-eclipse-compiler version 2.9.0-01,groovy-eclipse-batch version 2.3.4-01,plexus-compiler api version 2.2,allure version 1.4.16,maven version 3.1.1,surefire version 2.18.1
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<compilerId>groovy-eclipse-compiler</compilerId>
<source>1.8</source>
<target>1.8</target>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-compiler</artifactId>
<version>2.9.0-01</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-batch</artifactId>
<version>2.3.4-01</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-api</artifactId>
<version>2.2</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>groovy-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.3.5</version>
</dependency>
</dependencies>
</plugin>
I am not sure what to do now. Answers from stackoverflow like Groovy ShortTypeHandling ClassNotFoundException did not help me.
maven groovy plugins
Can you share the code that is reporting this error? Just to be sure...are you importing this class into your groovy class?
– Daniel
Mar 27 at 22:19
I am running maven clean install and the error is popping.I am new to maven and not sure about this "are you importing this class into your groovy class".Above mentioned is my plugin and dependencies used.Can you explain how to import?
– Shivani V
Mar 28 at 5:40
Where is this problem actually coming from? You must be running some code that you wrote. What you have shared here is your dependency list, but not your actual code.
– Daniel
Mar 28 at 14:49
mvn clean install is the command am running which downloads all the dependencies I have in my pom.xml and validates them against my java code.My java code is developed using 1.7 whic has ShortTypeHandling support for groovy .But when I upgraded to java 1.8 and ran mvn clean install it is throwing the shown error .Am sure it is version mismatch between java and groovy but cannot find solution.Hope you got the point now
– Shivani V
Mar 29 at 10:02
any one to help??
– Shivani V
Apr 1 at 13:49
add a comment |
I am running mvn clean install with the following plugin versionsjava 1.8
maven.compiler.source 1.8,maven.compiler.target 1.8,groovy.version 2.4.4,groovy-eclipse-compiler version 2.9.0-01,groovy-eclipse-batch version 2.3.4-01,plexus-compiler api version 2.2,allure version 1.4.16,maven version 3.1.1,surefire version 2.18.1
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<compilerId>groovy-eclipse-compiler</compilerId>
<source>1.8</source>
<target>1.8</target>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-compiler</artifactId>
<version>2.9.0-01</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-batch</artifactId>
<version>2.3.4-01</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-api</artifactId>
<version>2.2</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>groovy-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.3.5</version>
</dependency>
</dependencies>
</plugin>
I am not sure what to do now. Answers from stackoverflow like Groovy ShortTypeHandling ClassNotFoundException did not help me.
maven groovy plugins
I am running mvn clean install with the following plugin versionsjava 1.8
maven.compiler.source 1.8,maven.compiler.target 1.8,groovy.version 2.4.4,groovy-eclipse-compiler version 2.9.0-01,groovy-eclipse-batch version 2.3.4-01,plexus-compiler api version 2.2,allure version 1.4.16,maven version 3.1.1,surefire version 2.18.1
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<compilerId>groovy-eclipse-compiler</compilerId>
<source>1.8</source>
<target>1.8</target>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-compiler</artifactId>
<version>2.9.0-01</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-batch</artifactId>
<version>2.3.4-01</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-api</artifactId>
<version>2.2</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>groovy-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.3.5</version>
</dependency>
</dependencies>
</plugin>
I am not sure what to do now. Answers from stackoverflow like Groovy ShortTypeHandling ClassNotFoundException did not help me.
maven groovy plugins
maven groovy plugins
edited Mar 28 at 7:01
Shivani V
asked Mar 27 at 13:59
Shivani VShivani V
63 bronze badges
63 bronze badges
Can you share the code that is reporting this error? Just to be sure...are you importing this class into your groovy class?
– Daniel
Mar 27 at 22:19
I am running maven clean install and the error is popping.I am new to maven and not sure about this "are you importing this class into your groovy class".Above mentioned is my plugin and dependencies used.Can you explain how to import?
– Shivani V
Mar 28 at 5:40
Where is this problem actually coming from? You must be running some code that you wrote. What you have shared here is your dependency list, but not your actual code.
– Daniel
Mar 28 at 14:49
mvn clean install is the command am running which downloads all the dependencies I have in my pom.xml and validates them against my java code.My java code is developed using 1.7 whic has ShortTypeHandling support for groovy .But when I upgraded to java 1.8 and ran mvn clean install it is throwing the shown error .Am sure it is version mismatch between java and groovy but cannot find solution.Hope you got the point now
– Shivani V
Mar 29 at 10:02
any one to help??
– Shivani V
Apr 1 at 13:49
add a comment |
Can you share the code that is reporting this error? Just to be sure...are you importing this class into your groovy class?
– Daniel
Mar 27 at 22:19
I am running maven clean install and the error is popping.I am new to maven and not sure about this "are you importing this class into your groovy class".Above mentioned is my plugin and dependencies used.Can you explain how to import?
– Shivani V
Mar 28 at 5:40
Where is this problem actually coming from? You must be running some code that you wrote. What you have shared here is your dependency list, but not your actual code.
– Daniel
Mar 28 at 14:49
mvn clean install is the command am running which downloads all the dependencies I have in my pom.xml and validates them against my java code.My java code is developed using 1.7 whic has ShortTypeHandling support for groovy .But when I upgraded to java 1.8 and ran mvn clean install it is throwing the shown error .Am sure it is version mismatch between java and groovy but cannot find solution.Hope you got the point now
– Shivani V
Mar 29 at 10:02
any one to help??
– Shivani V
Apr 1 at 13:49
Can you share the code that is reporting this error? Just to be sure...are you importing this class into your groovy class?
– Daniel
Mar 27 at 22:19
Can you share the code that is reporting this error? Just to be sure...are you importing this class into your groovy class?
– Daniel
Mar 27 at 22:19
I am running maven clean install and the error is popping.I am new to maven and not sure about this "are you importing this class into your groovy class".Above mentioned is my plugin and dependencies used.Can you explain how to import?
– Shivani V
Mar 28 at 5:40
I am running maven clean install and the error is popping.I am new to maven and not sure about this "are you importing this class into your groovy class".Above mentioned is my plugin and dependencies used.Can you explain how to import?
– Shivani V
Mar 28 at 5:40
Where is this problem actually coming from? You must be running some code that you wrote. What you have shared here is your dependency list, but not your actual code.
– Daniel
Mar 28 at 14:49
Where is this problem actually coming from? You must be running some code that you wrote. What you have shared here is your dependency list, but not your actual code.
– Daniel
Mar 28 at 14:49
mvn clean install is the command am running which downloads all the dependencies I have in my pom.xml and validates them against my java code.My java code is developed using 1.7 whic has ShortTypeHandling support for groovy .But when I upgraded to java 1.8 and ran mvn clean install it is throwing the shown error .Am sure it is version mismatch between java and groovy but cannot find solution.Hope you got the point now
– Shivani V
Mar 29 at 10:02
mvn clean install is the command am running which downloads all the dependencies I have in my pom.xml and validates them against my java code.My java code is developed using 1.7 whic has ShortTypeHandling support for groovy .But when I upgraded to java 1.8 and ran mvn clean install it is throwing the shown error .Am sure it is version mismatch between java and groovy but cannot find solution.Hope you got the point now
– Shivani V
Mar 29 at 10:02
any one to help??
– Shivani V
Apr 1 at 13:49
any one to help??
– Shivani V
Apr 1 at 13:49
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%2f55379058%2fjava-lang-noclassdeffounderror-org-codehaus-groovy-runtime-typehandling-shortty%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
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using 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%2f55379058%2fjava-lang-noclassdeffounderror-org-codehaus-groovy-runtime-typehandling-shortty%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
Can you share the code that is reporting this error? Just to be sure...are you importing this class into your groovy class?
– Daniel
Mar 27 at 22:19
I am running maven clean install and the error is popping.I am new to maven and not sure about this "are you importing this class into your groovy class".Above mentioned is my plugin and dependencies used.Can you explain how to import?
– Shivani V
Mar 28 at 5:40
Where is this problem actually coming from? You must be running some code that you wrote. What you have shared here is your dependency list, but not your actual code.
– Daniel
Mar 28 at 14:49
mvn clean install is the command am running which downloads all the dependencies I have in my pom.xml and validates them against my java code.My java code is developed using 1.7 whic has ShortTypeHandling support for groovy .But when I upgraded to java 1.8 and ran mvn clean install it is throwing the shown error .Am sure it is version mismatch between java and groovy but cannot find solution.Hope you got the point now
– Shivani V
Mar 29 at 10:02
any one to help??
– Shivani V
Apr 1 at 13:49