Maven Stapler plugin.
Maven2 plugin for developing stapler applications.
Here is the list of declaration for maven-stapler-plugin. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.kohsuke.stapler</groupId> <artifactId>maven-stapler-plugin</artifactId> <version>1.15</version> </dependency>
If you think this Maven repository POM file listing for maven-stapler-plugin is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The maven-stapler-plugin-1.15 has 13 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Build | maven-project 2.0.1 This library is used to not only read Maven project object model files, but to assemble inheritence and to retrieve remote models as required. | 11 |
XML | qdox 1.6.1 QDox is a high speed, small footprint parser for extracting class/interface/method definitions from source files complete with JavaDoc @tags. It is designed to be used by active code generators or documentation tools. | 13 |
XML | dom4j 1.6.1 dom4j: the flexible XML framework for Java | 343 |
XPath | jaxen 1.1.1 Jaxen is a universal Java XPath engine. | 115 |
The following plugins are used in the maven-stapler-plugin-1.15.jar
Here is the content of the POM file.
<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"> <modelVersion>4.0.0</modelVersion> <groupId>org.kohsuke.stapler</groupId> <artifactId>maven-stapler-plugin</artifactId> <packaging>maven-plugin</packaging> <version>1.15</version> <name>Maven Stapler plugin</name> <description>Maven2 plugin for developing stapler applications</description> <scm> <connection>scm:svn:https://svn.dev.java.net/svn/stapler/tags/maven-stapler-plugin-1.15</connection> <developerConnection>scm:svn:https://svn.dev.java.net/svn/stapler/tags/maven-stapler-plugin-1.15</developerConnection> <url>https://stapler.dev.java.net/source/browse/stapler/tags/maven-stapler-plugin-1.15</url> </scm> <distributionManagement> <repository> <uniqueVersion>false</uniqueVersion> <id>java.net-maven2-repository</id> <url>java-net:/maven2-repository/trunk/repository/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-idea-plugin</artifactId> <configuration> <jdkName>JDK1.5</jdkName> <downloadSources>true</downloadSources> </configuration> </plugin> <plugin> <artifactId>maven-plugin-plugin</artifactId> <configuration> <goalPrefix>stapler</goalPrefix> </configuration> </plugin> </plugins> <extensions> <extension> <groupId>org.jvnet.wagon-svn</groupId> <artifactId>wagon-svn</artifactId> <version>1.9</version> </extension> </extensions> </build> <repositories> <repository> <id>maven2-repository.dev.java.net</id> <name>Java.net Repository for Maven</name> <url>http://download.java.net/maven/2/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.kohsuke.stapler</groupId> <artifactId>stapler</artifactId> <version>1.100</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.0.1</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>2.0.1</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.5.9</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.0.1</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>2.0.1</version> </dependency> <dependency> <groupId>qdox</groupId> <artifactId>qdox</artifactId> <version>1.6.1</version> </dependency> <!-- for the compile goal --> <dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-compiler-javac</artifactId> <version>1.5.3</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-compiler-manager</artifactId> <version>1.5.3</version> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> </dependency> <dependency> <groupId>org.jvnet.maven-jellydoc-plugin</groupId> <artifactId>maven-jellydoc-plugin</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>jaxen</groupId> <artifactId>jaxen</artifactId> <version>1.1.1</version> </dependency> </dependencies> <profiles> <profile> <!-- This is only for non MAC OS X builds, hence the property below --> <id>default-tools.jar</id> <activation> <property> <name>java.vendor</name> <value>Sun Microsystems Inc.</value> </property> </activation> <dependencies> <dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <version>1.5</version> <scope>system</scope> <systemPath>${java.home}/../lib/tools.jar</systemPath> </dependency> </dependencies> </profile> </profiles> </project>