springws-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>springws-maven-plugin</artifactId> <version>1.0-alpha-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/maven-v4_0_0.xsd"> <parent> <groupId>org.codehaus.mojo</groupId> <artifactId>mojo-parent</artifactId> <version>20</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.codehaus.mojo</groupId> <artifactId>springws-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <version>1.0-alpha-1</version> <name>springws-maven-plugin</name> <description> Scans spring context-files for spring-ws WsdlDefinition beans, which are exported to a wsdl-file suitable for distribution. </description> <issueManagement> <system>jira</system> <url>http://jira.codehaus.org/browse/MOJO/component/13840</url> </issueManagement> <developers> <developer> <id>david</id> <email>david@codehaus.org</email> <name>David J. M. Karlsen</name> <url>http://www.davidkarlsen.com</url> <organization>Codehaus</organization> <organizationUrl>http://www.codehaus.org</organizationUrl> <timezone>1</timezone> <roles> <role>developer</role> </roles> </developer> </developers> <scm> <connection>scm:svn:http://svn.codehaus.org/mojo/tags/springws-maven-plugin-1.0-alpha-1</connection> <developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/springws-maven-plugin-1.0-alpha-1</developerConnection> <url>http://fisheye.codehaus.org/browse/mojo/tags/springws-maven-plugin-1.0-alpha-1</url> </scm> <ciManagement> <system>hudson</system> <url>http://davidkarlsen.com/hudson/job/springws-maven-plugin/</url> <notifiers> <notifier> <sendOnError>true</sendOnError> <sendOnFailure>true</sendOnFailure> <sendOnSuccess>true</sendOnSuccess> <sendOnWarning>true</sendOnWarning> <type>mail</type> <configuration> <address>david@codehaus.org</address> </configuration> </notifier> </notifiers> </ciManagement> <prerequisites> <maven>2.0</maven> </prerequisites> <inceptionYear>2009</inceptionYear> <properties> <spring.ws.version>1.5.6</spring.ws.version> </properties> <licenses> <license> <distribution>repo</distribution> <name>The MIT License</name> <url>file:LICENSE.TXT</url> </license> </licenses> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> </dependency> <dependency> <groupId>org.springframework.ws</groupId> <artifactId>spring-ws-core</artifactId> <version>1.5.6</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>2.5.6</version> </dependency> <dependency> <groupId>org.apache.ws.commons.schema</groupId> <artifactId>XmlSchema</artifactId> <version>1.4.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>1.2</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.6</version> <configuration> <downloadSources>true</downloadSources> <downloadJavadocs>true</downloadJavadocs> <!-- TODO: add checkstyle config --> </configuration> </plugin> </plugins> </pluginManagement> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.1</version> <configuration> <onlyCurrentVersion>true</onlyCurrentVersion> <component>13840</component> <additionalBuildcommands> <buildcommand>com.atlassw.tools.eclipse.checkstyle.CheckstyleBuilder</buildcommand> </additionalBuildcommands> <additionalProjectnatures> <projectnature>com.atlassw.tools.eclipse.checkstyle.CheckstyleNature</projectnature> </additionalProjectnatures> </configuration> </plugin> </plugins> </reporting> </project>