Tagged Questions
The plexus tag has no wiki summary.
4
votes
0answers
297 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 ...
3
votes
3answers
1k 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 ...
2
votes
0answers
61 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. ...
1
vote
0answers
196 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
154 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 ...
0
votes
1answer
19 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 ...
0
votes
1answer
43 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
136 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
275 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 ...
0
votes
0answers
156 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 ...