Maven Repository - POM file for JUnit contiperf 2.2.0 2.2.0

Summary

databene ContiPerf.

ContiPerf is an open source testing utility that enables the user to easily convert JUnit 4 test cases into performance tests..

Declaration

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

<dependency>
   <groupId>org.databene</groupId>
   <artifactId>contiperf</artifactId>
   <version>2.2.0</version>
</dependency>

If you think this Maven repository POM file listing for contiperf 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
URL: http://www.fsf.org/licensing/licenses/lgpl.txtName:Apache License
URL: http://www.apache.org/licenses/LICENSE-2.0Name:Eclipse Public License
URL: http://www.eclipse.org/legal/epl-v10.htmlName:BSD License
URL: http://databene.org/contiperf/BSD%20License.html.

Depends on

The contiperf-2.2.0 has 1 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 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.
1957

Plugin

The following plugins are used in the contiperf-2.2.0.jar

  1. jdepend-maven-plugin
  2. maven-assembly-plugin
  3. maven-compiler-plugin
  4. maven-pmd-plugin
  5. maven-project-info-reports-plugin
  6. maven-site-plugin
  7. maven-source-plugin
  8. maven-surefire-report-plugin




Packages

The following packages are defined in the contiperf-2.2.0.jar

org.databene.contiperf
org.databene.contiperf.clock
org.databene.contiperf.junit
org.databene.contiperf.log
org.databene.contiperf.report
org.databene.contiperf.timer
org.databene.contiperf.util
org.databene.profile
org.databene.stat

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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.databene</groupId>
    <artifactId>contiperf</artifactId>
    <version>2.2.0</version>

    <packaging>jar</packaging>
    <name>databene ContiPerf</name>
    <url>http://databene.org/contiperf</url>
    <description>
      ContiPerf is an open source testing utility that enables the user to easily
      convert JUnit 4 test cases into performance tests.
    </description>

    <licenses>
        <license>
            <name>GNU Lesser General Public License</name>
            <url>http://www.fsf.org/licensing/licenses/lgpl.txt</url>
            <distribution>manual</distribution>
            <comments>
            </comments>
        </license>
        
        <license>
            <name>Apache License</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0</url>
            <distribution>manual</distribution>
            <comments>
            </comments>
        </license>
        
        <license>
            <name>Eclipse Public License</name>
            <url>http://www.eclipse.org/legal/epl-v10.html</url>
            <distribution>manual</distribution>
            <comments>
            </comments>
        </license>

        <license>
            <name>BSD License</name>
            <url>http://databene.org/contiperf/BSD%20License.html</url>
            <distribution>manual</distribution>
            <comments>
            </comments>
        </license>
        
    </licenses>

    

    <dependencies>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.10</version>
            <scope>provided</scope>
        </dependency>

    </dependencies>

    <build>

      <extensions>
      <extension>
        <groupId>org.apache.maven.wagon</groupId>
        <artifactId>wagon-ftp</artifactId>
        <version>1.0-alpha-6</version>
      </extension>
      </extensions>
      
        <resources>
            <resource>
                <filtering>true</filtering>
                <directory>${basedir}/src/main/resources</directory>
                <includes>
                    <include>**/*.xml</include>
                    <include>**/*.properties</include>
                    <include>**/*.dtd</include>
                    <include>**/*.csv</include>
                    <include>**/*.txt</include>
                </includes>
                <excludes>
                    <exclude>**/log4j.xml</exclude>
                    <exclude>dataset.dtd</exclude>
                </excludes>
            </resource>
            <resource>
                <filtering>false</filtering>
                <directory>${basedir}</directory>
                <includes>
                    <include>Apache_License-2.0.txt</include>
                    <include>epl-v10.html</include>
                    <include>lgpl-version3.txt</include>
                </includes>
            </resource>
        </resources>

        <testResources>
            <testResource>
                <filtering>false</filtering>
                <directory>${basedir}/src/test/resources</directory>
                <includes>
                    <include>**/*</include>
                </includes>
            </testResource>
        </testResources>

        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <encoding>UTF-8</encoding>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <descriptors>
                        <descriptor>src/main/assembly/dist-assembly.xml</descriptor>
                    </descriptors>
                </configuration>
            </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-site-plugin</artifactId>
        <version>2.1.1</version>
      </plugin>
        </plugins>
    </build>

    <reporting>
        <plugins>

            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jdepend-maven-plugin</artifactId>
                <version>2.0-beta-1</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-project-info-reports-plugin</artifactId>
                <reportSets>
                    <reportSet>
                        <reports>

                            <report>dependencies</report>
                            <report>project-team</report>
                            <report>license</report>
                        </reports>
                    </reportSet>
                </reportSets>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-pmd-plugin</artifactId>
                <configuration>
                    <linkXref>true</linkXref>
                    <sourceEncoding>UTF-8</sourceEncoding>
                    <minimumTokens>100</minimumTokens>
                    <targetJdk>1.5</targetJdk>
                </configuration>
            </plugin>
<!--
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
            </plugin>
  
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jxr-maven-plugin</artifactId>
            </plugin>
-->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-report-plugin</artifactId>
            </plugin>

        </plugins>
    </reporting>

  <distributionManagement>
    <repository>
      <id>databene.repo</id>
      <name>databene Internal Repository</name>
      <url>ftp://databene.org/databene/m2</url>
    </repository>
  </distributionManagement>
  
  <scm>
    <url>https://contiperf.svn.sourceforge.net/svnroot/contiperf</url>
  </scm>

</project>