Maven Repository - POM file for Build nexus 0.0.2 0.0.2

Summary

Hudson Maven Release Plug-in nexus helper.

shaded jar that gets around some class loading issues in HUdson versions prior to 1.316.

Declaration

Here is the list of declaration for nexus. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.jvnet.hudson.plugins.m2release</groupId>
   <artifactId>nexus</artifactId>
   <version>0.0.2</version>
</dependency>

If you think this Maven repository POM file listing for nexus is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:GPL
URL: http://www.gnu.org/licenses/gpl.txt.





Depends on

The nexus-0.0.2 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 3.8
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
111

Plugin

The following plugins are used in the nexus-0.0.2.jar

  1. maven-shade-plugin

Packages

The following packages are defined in the nexus-0.0.2.jar

hidden.org.codehaus.plexus.interpolation
hidden.org.codehaus.plexus.interpolation.os
hidden.org.codehaus.plexus.interpolation.reflection
hidden.org.codehaus.plexus.interpolation.util
org.apache.commons.codec
org.apache.commons.codec.binary
org.apache.commons.codec.digest
org.apache.commons.codec.language
org.apache.commons.codec.net
org.apache.commons.httpclient
org.apache.commons.httpclient.auth
org.apache.commons.httpclient.cookie
org.apache.commons.httpclient.methods
org.apache.commons.httpclient.methods.multipart
org.apache.commons.httpclient.params
org.apache.commons.httpclient.protocol
org.apache.commons.httpclient.util
org.apache.commons.logging
org.apache.commons.logging.impl
org.blah.foo.bar.org.jaxen
org.blah.foo.bar.org.jaxen.dom
org.blah.foo.bar.org.jaxen.dom4j
org.blah.foo.bar.org.jaxen.expr
org.blah.foo.bar.org.jaxen.expr.iter
org.blah.foo.bar.org.jaxen.function
org.blah.foo.bar.org.jaxen.function.ext
org.blah.foo.bar.org.jaxen.function.xslt
org.blah.foo.bar.org.jaxen.javabean
org.blah.foo.bar.org.jaxen.jdom
org.blah.foo.bar.org.jaxen.pattern
org.blah.foo.bar.org.jaxen.saxpath
org.blah.foo.bar.org.jaxen.saxpath.base
org.blah.foo.bar.org.jaxen.saxpath.helpers
org.blah.foo.bar.org.jaxen.util
org.blah.foo.bar.org.jaxen.xom
org.codehaus.plexus.util
org.codehaus.plexus.util.cli
org.codehaus.plexus.util.cli.shell
org.codehaus.plexus.util.dag
org.codehaus.plexus.util.interpolation
org.codehaus.plexus.util.introspection
org.codehaus.plexus.util.io
org.codehaus.plexus.util.reflection
org.codehaus.plexus.util.xml
org.codehaus.plexus.util.xml.pull
org.dom4j
org.dom4j.bean
org.dom4j.datatype
org.dom4j.dom
org.dom4j.dtd
org.dom4j.io
org.dom4j.jaxb
org.dom4j.rule
org.dom4j.rule.pattern
org.dom4j.swing
org.dom4j.tree
org.dom4j.util
org.dom4j.xpath
org.dom4j.xpp
org.jdom
org.jdom.adapters
org.jdom.filter
org.jdom.input
org.jdom.output
org.jdom.transform
org.jdom.xpath
org.slf4j
org.slf4j.helpers
org.slf4j.impl
org.slf4j.spi
org.sonatype.nexus.restlight.common
org.sonatype.nexus.restlight.stage
org.w3c.dom




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <parent>
    <artifactId>hudson</artifactId>
    <groupId>org.jvnet.hudson</groupId>
    <version>1.7</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.jvnet.hudson.plugins.m2release</groupId>
  <artifactId>nexus</artifactId>
  <name>Hudson Maven Release Plug-in nexus helper</name>
  <version>0.0.2</version>
  <description>shaded jar that gets around some class loading issues in HUdson versions prior to 1.316</description>
  <licenses>
    <license>
      <name>GPL</name>
      <url>http://www.gnu.org/licenses/gpl.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:svn:https://guest@svn.dev.java.net/svn/hudson/tags/nexus-0.0.2</connection>
    <developerConnection>scm:svn:https://svn.dev.java.net/svn/hudson/tags/nexus-0.0.2</developerConnection>
    <url>https://hudson.dev.java.net/source/browse/hudson/hudson/plugins/m2release/nexus/tags/nexus-0.0.2</url>
  </scm>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>1.2.1</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <relocations>
                <relocation>
                  <pattern>org.jaxen</pattern>
                  <shadedPattern>org.blah.foo.bar.org.jaxen</shadedPattern>
                </relocation>
              </relocations>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>