was6-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>was6-maven-plugin</artifactId> <version>1.2.1</version> </dependency>
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.codehaus.mojo</groupId> <artifactId>mojo-parent</artifactId> <version>30</version> </parent> <artifactId>was6-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>WAS6 Maven Plugin</name> <version>1.2.1</version> <description> Tools for working with IBM WebSphere 6.0.x and 6.1.x. This plugin works along with an installation of WebSphere Application Server or Process Server - standalone or ND installation, to provide automated tasks for: generating RMIC stubs, starting/stopping servers, installing/updating/uninstalling EARs to application servers, run serviceDeploy and run arbitrary scripts with wsadmin. </description> <properties> <invoker.skip>true</invoker.skip> <!-- skip by default as it requires a WAS install, set this to false and define was6.wasHome to run the tests --> </properties> <prerequisites> <maven>2.0.6</maven> </prerequisites> <ciManagement> <system>hudson</system> <url>http://www.davidkarlsen.com/hudson/</url> <notifiers> <notifier> <type>mail</type> <sendOnError>true</sendOnError> <sendOnFailure>true</sendOnFailure> <sendOnSuccess>true</sendOnSuccess> <sendOnWarning>true</sendOnWarning> <configuration> <address>david@codehaus.org</address> </configuration> </notifier> </notifiers> </ciManagement> <issueManagement> <system>jira</system> <url>http://jira.codehaus.org/browse/MWAS</url> </issueManagement> <scm> <connection>scm:svn:http://svn.codehaus.org/mojo/tags/was6-maven-plugin-1.2.1</connection> <developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/was6-maven-plugin-1.2.1</developerConnection> <url>http://fisheye.codehaus.org/browse/mojo/tags/was6-maven-plugin-1.2.1</url> </scm> <inceptionYear>2007</inceptionYear> <developers> <developer> <id>david</id> <name>David J. M. Karlsen</name> <email>david@codehaus.org</email> <url>http://www.davidkarlsen.com</url> <organization>codehaus.org</organization> <organizationUrl>http://www.codehaus.org</organizationUrl> <roles> <role>developer</role> </roles> <timezone>1</timezone> </developer> <developer> <id>jmz</id> <name>Javier Murciego</name> <email>javier.murciego@gmail.com</email> <url>https://github.com/jmurciego</url> <organization /> <organizationUrl /> <roles> <role>developer</role> </roles> <timezone>1</timezone> </developer> </developers> <contributors> <contributor> <email>chrisg@warpspeed.com.au</email> <name>Chris Graham</name> <organization>WarpSpeed Computers</organization> <organizationUrl>www.warpspeed.com.au</organizationUrl> <roles> <role>developer</role> </roles> <timezone>10</timezone> </contributor> <contributor> <email>khe@corena.com</email> <name>Kim Heftø</name> <organization /> <organizationUrl /> <roles> <role>developer</role> </roles> <timezone>10</timezone> </contributor> <contributor> <email>mark.borner@zurich.com.au</email> <name>Mark Borner</name> <organization /> <organizationUrl /> <roles> <role>developer</role> </roles> <timezone>10</timezone> </contributor> </contributors> <licenses> <license> <name>The MIT License</name> <url>https://svn.codehaus.org/mojo/trunk/mojo/was6-maven-plugin/LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <profiles> <profile> <id>run-its</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <version>1.4</version> <executions> <execution> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> <configuration> <cloneAllFiles>true</cloneAllFiles> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <goals> <goal>clean</goal> <goal>install</goal> </goals> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <downloadJavadocs>true</downloadJavadocs> <downloadSources>true</downloadSources> <workspaceCodeStylesURL>http://maven.apache.org/developers/maven-eclipse-codestyle.xml</workspaceCodeStylesURL> <m2eclipse>true</m2eclipse> <additionalProjectnatures> <projectnature>org.maven.ide.eclipse.container.Maven2Nature</projectnature> </additionalProjectnatures> <additionalBuildcommands> <buildcommand>org.maven.ide.eclipse.maven2Builder</buildcommand> </additionalBuildcommands> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>2.0.6</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.0.6</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>2.0.6</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-settings</artifactId> <version>2.0.6</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.0.6</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.5.15</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-resources</artifactId> <version>1.0-alpha-4</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.1</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> </dependency> <!-- optional dependency in dom4j --> <dependency> <groupId>jaxen</groupId> <artifactId>jaxen</artifactId> <version>1.1.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.2</version> <configuration> <urlDownload>${project.url}</urlDownload> <columnNames>Key,Summary,Status,Resolution,Assignee,Type,Version,Fix Version</columnNames> <generateJiraAnnouncement>true</generateJiraAnnouncement> <toAddresses> <toAddress>dev@mojo.codehaus.org</toAddress> <toAddress>user@mojo.codehaus.org</toAddress> <toAddress>users@maven.apache.org</toAddress> </toAddresses> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.4.0</version> <configuration> <threshold>Normal</threshold> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jdepend-maven-plugin</artifactId> <version>2.0-beta-2</version> </plugin> </plugins> </reporting> </project>