java-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.continuousassurance.swamp</groupId> <artifactId>java-api</artifactId> <version>1.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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>org.continuousassurance.swamp</groupId> <artifactId>java-api</artifactId> <version>1.2</version> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <runSuite>**/SWAMPTestSuite.class</runSuite> <additionalparam>-Xdoclint:none</additionalparam> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.7</source> <target>1.7</target> </configuration> <version>2.3.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.18.1</version> <configuration> <excludes> <exclude>**/*Test.java</exclude> <exclude>**/Test*.java</exclude> </excludes> <includes> <include>${runSuite}</include> </includes> <forkMode>perTest</forkMode> <enableAssertions>true</enableAssertions> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.1.1</version> <executions> <execution> <id>bundle-sources</id> <phase>package</phase> <goals> <!-- produce source artifact for main project sources --> <goal>jar-no-fork</goal> <!-- produce source artifact for project test sources --> <goal>test-jar-no-fork</goal> </goals> </execution> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <!-- Java 8 specific or empty javadoc tags make the build fail --> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <configuration> <skip>false</skip> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>edu.uiuc.ncsa.security</groupId> <artifactId>ncsa-security-util</artifactId> <version>3.4</version> </dependency> <dependency> <groupId>edu.uiuc.ncsa.security</groupId> <artifactId>ncsa-security-servlet</artifactId> <version>3.4</version> </dependency> <dependency> <groupId>edu.uiuc.ncsa.security</groupId> <artifactId>ncsa-security-storage</artifactId> <version>3.4</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>edu.uiuc.ncsa.security</groupId> <artifactId>ncsa-security-core</artifactId> <version>3.4</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>4.4.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</artifactId> <version>2.4</version> <classifier>jdk15</classifier> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> <version>4.5.2</version> </dependency> </dependencies> <repositories> <repository> <id>oss.sonatype.org-snapshot</id> <url>http://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>Sonatype</id> <name>Sonatype</name> <url>https://oss.sonatype.org/content/groups/public/</url> </repository> </repositories> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>sonatype</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/ </url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>sonatype</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> <uniqueVersion>false</uniqueVersion> </snapshotRepository> </distributionManagement> </project>