Maven Repository - POM file for Testing testsuite 0.3.10 0.3.10

Summary

Test Tool Interfaces - Test Suite.

Test Suite classes for Test Tool Interfaces.

Declaration

Here is the list of declaration for testsuite. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.testtoolinterfaces</groupId>
   <artifactId>testsuite</artifactId>
   <version>0.3.10</version>
</dependency>

If you think this Maven repository POM file listing for testsuite is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:GNU Lesser General Public License - version 3
URL: http://www.gnu.org/licenses/lgpl-3.0.txt.





Depends on

The testsuite-0.3.10 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit-dep 4.10
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
177
Testingutils 0.1.7
Utilities for Test Tool Interfaces
13

Plugin

The following plugins are used in the testsuite-0.3.10.jar

  1. maven-compiler-plugin
  2. maven-javadoc-plugin
  3. maven-source-plugin

Packages

The following packages are defined in the testsuite-0.3.10.jar

org.testtoolinterfaces.testsuite

POM File Source

Here is the content of the POM file.

<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>org.testtoolinterfaces</groupId>
  <artifactId>testsuite</artifactId>
  <version>0.3.10</version>
  <name>Test Tool Interfaces - Test Suite</name>
  <description>Test Suite classes for Test Tool Interfaces</description>
  <url>http://www.testtoolinterfaces.org/</url>
  <packaging>jar</packaging>

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>

  <licenses>
    <license>
      <name>GNU Lesser General Public License - version 3</name>
      <url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <scm>
    <connection>scm:git:git@github.com:ArjanKranenburg/tti_testsuite.git</connection>
    <developerConnection>scm:git:git@github.com:ArjanKranenburg/tti_testsuite.git</developerConnection>
    <url>git@github.com:ArjanKranenburg/tti_testsuite.git</url>
  </scm>
 
  

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit-dep</artifactId>
      <version>4.10</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.testtoolinterfaces</groupId>
      <artifactId>utils</artifactId>
      <version>0.1.7</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>2.5.1</version>
      <configuration>
        <source>1.5</source>
        <target>1.5</target>
      </configuration>
      </plugin>
      <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-source-plugin</artifactId>
      <version>2.1.2</version>
      <executions>
        <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.8.1</version>
    <executions>
      <execution>
        <id>attach-javadocs</id>
        <goals>
          <goal>jar</goal>
        </goals>
      </execution>
    </executions>
    </plugin>
    </plugins>
  </build>

  <profiles>
    <profile>
      <id>release-sign-artifacts</id>
      <activation>
        <property>
          <name>performRelease</name>
          <value>true</value>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>1.1</version>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>