sigtestdev
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.java.sigtest</groupId> <artifactId>sigtestdev</artifactId> <version>3.0-b12-v20140219</version> </dependency>
<!-- $Id$ Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation. Oracle designates this particular file as subject to the "Classpath" exception as provided by Oracle in the LICENSE file that accompanied this code. This code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License version 2 for more details (a copy is included in the LICENSE file that accompanied this code). You should have received a copy of the GNU General Public License version 2 along with this work; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA or visit www.oracle.com if you need additional information or have any questions. --> <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> <groupId>net.java.sigtest</groupId> <artifactId>sigtestdev</artifactId> <version>3.0-b12-v20140219</version> <packaging>pom</packaging> <name>The Signature Test Kit</name> <description> The SigTest open source project is a collection of tools based on Oracle's commercial SigTest tools product. The SigTest tools can be used to compare APIs and to measure the test coverage of an API. Warning: this is an unofficial build of the open source SigTest tool made specifically for the Maven central repository by Alexey Gavrilov (mailto: Alexey1.Gavrilov@gmail.com). </description> <url>https://sigtest.java.net</url> <licenses> <license> <name>GNU General Public License, version 2, with the Classpath Exception</name> <url>http://openjdk.java.net/legal/gplv2+ce.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:svn:https://svn.java.net/svn/sigtest~svn</connection> <developerConnection>scm:svn:https://svn.java.net/svn/sigtest~svn</developerConnection> <url>scm:svn:https://java.net/projects/sigtest/sources/svn/show</url> </scm> <issueManagement> <url>https://java.net/jira/browse/SIGTEST</url> <system>JIRA</system> </issueManagement> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <developers> <developer> <name>https://java.net/projects/sigtest/members</name> <email>issues@sigtest.java.net</email> </developer> </developers> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.8</version> <executions> <execution> <id>attach-artifacts</id> <phase>package</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>sigtest-3_0-FCS-b12-sigtestdev.jar</file> <type>jar</type> </artifact> <artifact> <file>sigtest-3_0-FCS-b12-javadoc.jar</file> <type>jar</type> <classifier>javadoc</classifier> </artifact> <artifact> <file>sigtest-3_0-FCS-b12-sources.jar</file> <type>jar</type> <classifier>sources</classifier> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>