Plexus is a software framework for building modular applications using dependency injection.
5
votes
0answers
96 views
Infinite recursion bug in Maven release / scm tag / Plexus DirectoryScanner?
I'm seeing my Maven release fail at the scm tagging phase with an apparent infinite recursion inside the release plugin:
... (hundreds more times)
at ...
0
votes
1answer
92 views
NoClassDefFoundError PlexusIoResourceCollection / Jenkins + Maven 3
i'm trying to migrate some of my jenkins jobs to maven 3 and i'm facing some troubles with maven plugins.
for instance, i have a job building pretty well under maven 2, which fires the following ...
0
votes
0answers
88 views
How do I add configuration to the maven-compiler-plugin through another plugin?
I am creating an org.codehaus.plexus.compiler.Compiler component that is a compiler for the maven-compiler-plugin. I need my component to add configuration to the enclosing maven-compiler-plugin ...
0
votes
1answer
77 views
Compiling a java class with plexus-compiler-eclipse and running it as a JUnit test
I am currently trying to generate code on the fly, compile it then run it as a JUnit4 test. I am quite close to the goal, but I have an issue which might be either with plexus-compiler-eclipse or how ...
1
vote
1answer
323 views
Wro4j maven plugin - required class is missing
I'm trying to run wro4j maven plugin according to the documentation
I add the plugin to my pom.xml:
<plugin>
<groupId>ro.isdc.wro4j</groupId>
...
0
votes
1answer
287 views
CompilerMojo#execute() caused a linkage error (java.lang.NoSuchMethodError) and may be out-of-date
I've searched google and reviewed answers on StackOverflow, but cannot seem to resolve this problem. I recently joined this project and added a few things to the POM. Being a relative neophyte with ...
0
votes
2answers
218 views
What does “Supported source version 'RELEASE_5' from annotation processor…” mean?
What does it mean and how it can be removed (reformatted for better readability)?
[INFO] Compiling 30 source files to ...\target\test-classes
[INFO] ...
1
vote
0answers
223 views
maven custom lifecycle is not recognized
I am trying to test a simple custom plugin with custom lifecycle.
Here is my EchoMojo.java file:
package org.sonatype.mavenbook.plugins;
import org.apache.maven.plugin.AbstractMojo;
import ...
0
votes
0answers
676 views
Maven / Plexus ComponentLookupException - classpath nightmare?
Does anyone know what the following exception means, or how I should begin to debug or investigate it? I find it rather cryptic. I think it means I'm missing a Maven dependency in my pom.xml, but I ...
0
votes
1answer
155 views
Do plexus annotations work in a maven plugin?
I'm working on a custom maven plugin and I'm trying to use the Plexus annotations for dependency injection as shown on the Sonotype blog.
I have a field defined in my mojo:
/**
*/
@Requirement(hint ...
0
votes
1answer
26 views
Overriding defaults
I am currently trying to extend an existing project. Unfortunately I am completely new to plexus. I am greatly Spring biassed, so please tell me if the approach is completely wrong.
Let me describe ...
4
votes
1answer
202 views
Difference between (plain) Classworlds and Plexus Classworlds?
Can anyone please explain the difference between plexus-classworlds and (plain) classworlds?
These two are confusing and can't see the difference. Plexus classworlds contains almost no description. ...
0
votes
1answer
50 views
Newest version of plexus ftpd project
Can anyone provide the link to the svn repository latest version/tag of of Plexus FTP Server project? I only see version 1.0-alpha-1 at the Maven repository which is released in 2005.
Is it the ...
0
votes
2answers
361 views
maven index search in jboss plexus error
Hi Im trying to search a maven repository from a seassion bean deployed on jboss
this code works on javaSE
PlexusContainer plexus = new DefaultPlexusContainer();
NexusIndexer n = ...
0
votes
1answer
511 views
Replace plexus component in Maven 3
I need to replace some Maven default functionality with my own implementation, and I am looking for a clean way to do that.
I have extended ...
4
votes
1answer
349 views
Calling maven goal from within another goal
I'm trying to create a wrapper to a maven plugin that I found in the internet.
My wrapper should do some work than call the execute on the original plugin's goal.
The examples I saw so far ...
43
votes
1answer
1k views
How to get the current MavenSession or MavenExecutionRequest from a Plexus Component
I created a Plexus component to house common logic for several Mojos I want to create. I have been able to pass information like localRepository and project from the Mojo (and test cases).
I was ...
1
vote
0answers
371 views
impossible to extend maven plugin configuration
I am trying to extend the maven plugin: hibernate3 (org.codehaus). All I want to do is extend their base plugin class and change some functionality. The plugin compiles and installs just fine (after ...
1
vote
1answer
210 views
How do I stop my command-line arguments being escaped in a maven plugin?
I have a plugin that uses the Plexus Commandline to invoke some external process and capture the output. One of the arguments is in a funny format with spaces and quotes, e.g. --range:"25 Aug ...
3
votes
3answers
2k views
Eclipse Maven Plugin fails to create groovy-maven-archetype project
I have installed the Maven for Eclipse plugin from Sonatype.
(update site: http://m2eclipse.sonatype.org/update/)
I am creating a Maven project, and choosing to use the groovy-maven-archetype as my ...