soap-builder
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.xkcoding</groupId> <artifactId>soap-builder</artifactId> <version>0.0.2</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>soap-builder</artifactId> <packaging>bundle</packaging> <name>soap-builder - XML based SOAP message generator</name> <parent> <groupId>com.xkcoding</groupId> <artifactId>soap-ws</artifactId> <version>0.0.2</version> <relativePath>../pom.xml</relativePath> </parent> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>com.xkcoding</groupId> <artifactId>soap-common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.xkcoding</groupId> <artifactId>soap-legacy</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.1</version> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>