jaxr-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.ws.scout</groupId> <artifactId>jaxr-api</artifactId> <version>1.0</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.ws.scout</groupId> <artifactId>scout-parent</artifactId> <version>1.0</version> </parent> <artifactId>jaxr-api</artifactId> <name>JAXR API</name> <version>1.0</version> <description>The JAXR API</description> <dependencies> <dependency> <groupId>geronimo-spec</groupId> <artifactId>geronimo-spec-activation</artifactId> <version>1.0.2-rc4</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.4</version> <inherited>true</inherited> <configuration> <skip>false</skip> <excludes> <exclude>**/*Abstract*.java</exclude> </excludes> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> </plugins> </build> </project>