I'm trying to use the mavenium plugin with my pom.xml. I followed the
instructions as best I could from the mavenium web site. I downloaded a jar
file, which I believe is version 0.2 from source forge.
I executed the following command:
First I changed the name from: mavenium.0.2.jar to mavenium.jar
Then from the same directory I executed :
mvn install:install-file -DgroupId=com.agilepirates
-DartifactId=mavenium -Dversion=0.2 -Dpackaging=maven-plugin
-Dfile=./mavenium.jar
That put the jar file into my local repository. I checked it's there.
The pom.xml file of the project has this stanza in it:
<plugin>
<groupId>com.agilepirates</groupId>
<artifactId>mavenium</artifactId>
<version>0.2</version>
<executions>
<execution>
<goals>
<goal>launch-selenium</goal>
<goal>validate-selenium-tests</goal>
</goals>
</execution>
</executions>
</plugin>
When I go to run maven it can't seem to find the plugin.
This is what shows up:
url = https://our.local.repo/nexus/content/repositories/central
Downloading:
https://our.local.repo/nexus/content/repositories/central/com/agilepirates/mavenium/0.2/mavenium-0.2.pom
url = https://our.local.repo/nexus/content/repositories/releases
Downloading:
https://our.local.repo/nexus/content/repositories/releases/com/agilepirates/mavenium/0.2/mavenium-0.2.pom
url = https://our.local.repo/nexus/content/repositories/thirdparty
Downloading:
https://our.local.repo/nexus/content/repositories/thirdparty/com/agilepirates/mavenium/0.2/mavenium-0.2.pom
Which is our local repository (name removed for security reasons).
It doesn't seem to look in the local m2 repository and there is no
mavenium-0.2.pom file there even if it did.
I'm a little confused, can someone shed some light on this and let me know
what I'm missing?
Tony