Download contiperf-2.3.4.jar file

Introduction

You can download contiperf-2.3.4.jar in this page.

License

Apache License 2.0

Type List

contiperf-2.3.4.jar file has the following types.

LICENSE.TXT
META-INF/MANIFEST.MF
META-INF/maven/org.databene/contiperf/pom.properties
META-INF/maven/org.databene/contiperf/pom.xml
org.databene.contiperf.AbstractInvocationRunner.class
org.databene.contiperf.ArgumentsProvider.class
org.databene.contiperf.Clock.class
org.databene.contiperf.ConcurrentRunner.class
org.databene.contiperf.Config.class
org.databene.contiperf.CountRunner.class
org.databene.contiperf.EmptyArgumentsProvider.class
org.databene.contiperf.ExecutionConfig.class
org.databene.contiperf.ExecutionLogger.class
org.databene.contiperf.InvocationRunner.class
org.databene.contiperf.Invoker.class
org.databene.contiperf.PercentileRequirement.class
org.databene.contiperf.PerfTest.class
org.databene.contiperf.PerfTestConfigurationError.class
org.databene.contiperf.PerfTestException.class
org.databene.contiperf.PerfTestExecutionError.class
org.databene.contiperf.PerfTestFailure.class
org.databene.contiperf.PerformanceRequirement.class
org.databene.contiperf.PerformanceTracker.class
org.databene.contiperf.Required.class
org.databene.contiperf.StopWatch.class
org.databene.contiperf.TimedRunner.class
org.databene.contiperf.Unrepeatable.class
org.databene.contiperf.WaitTimer.class
org.databene.contiperf.clock.AbstractClock.class
org.databene.contiperf.clock.CpuClock.class
org.databene.contiperf.clock.SystemClock.class
org.databene.contiperf.clock.UserClock.class
org.databene.contiperf.junit.BlockContiPerfClassRunner.class
org.databene.contiperf.junit.ContiPerfRule.class
org.databene.contiperf.junit.ContiPerfSuiteRunner.class
org.databene.contiperf.junit.JUnitInvoker.class
org.databene.contiperf.junit.JUnitPerfTestFailure.class
org.databene.contiperf.junit.JUnitReportContext.class
org.databene.contiperf.junit.ParallelRunner.class
org.databene.contiperf.junit.ParallelScheduler.class
org.databene.contiperf.junit.PerfTestStatement.class
org.databene.contiperf.junit.PerformanceRequirementFailedError.class
org.databene.contiperf.log.ConsoleExecutionLogger.class
org.databene.contiperf.log.EmptyExecutionLogger.class
org.databene.contiperf.log.FileExecutionLogger.class
org.databene.contiperf.log.ListExecutionLogger.class
org.databene.contiperf.report.AbstractReportModule.class
org.databene.contiperf.report.CSVInvocationReportModule.class
org.databene.contiperf.report.CSVLatencyReportModule.class
org.databene.contiperf.report.CSVSummaryReportModule.class
org.databene.contiperf.report.ConsoleReportModule.class
org.databene.contiperf.report.EmptyReportModule.class
org.databene.contiperf.report.GoogleLatencyRenderer.class
org.databene.contiperf.report.HtmlReportModule.class
org.databene.contiperf.report.InvocationCountingReportModule.class
org.databene.contiperf.report.InvocationLog.class
org.databene.contiperf.report.InvocationSummary.class
org.databene.contiperf.report.LatencyDataSet.class
org.databene.contiperf.report.ListReportModule.class
org.databene.contiperf.report.LoggerModuleAdapter.class
org.databene.contiperf.report.ReportContext.class
org.databene.contiperf.report.ReportModule.class
org.databene.contiperf.report.ReportUtil.class
org.databene.contiperf.report.Verdict.class
org.databene.contiperf.sensor.MemorySensor.class
org.databene.contiperf.timer.AbstractTimer.class
org.databene.contiperf.timer.ConstantTimer.class
org.databene.contiperf.timer.CumulatedTimer.class
org.databene.contiperf.timer.None.class
org.databene.contiperf.timer.RandomTimer.class
org.databene.contiperf.util.ContiPerfUtil.class
org.databene.contiperf.util.InvokerProxy.class
org.databene.profile.Profile.class
org.databene.profile.Profiler.class
org.databene.profile.Profiling.class
org.databene.stat.CounterRepository.class
org.databene.stat.LatencyCounter.class
org/databene/contiperf/version.properties

Pom

contiperf-2.3.4.pom file content.

<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.3.4</version>
	<packaging>jar</packaging>

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

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<licenses>
		<license>
			<name>Apache License 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0</url>
		</license>
	</licenses>

	<organization>
		<name>Volker Bergmann</name>
		<url>http://www.bergmann-it.de</url>
	</organization>

	<developers>
		<developer>
			<name>Volker Bergmann</name>
			<id>vbergmann</id>
			<email>volker.bergmann@bergmann-it.de</email>
			<organization>Volker Bergmann IT Consulting</organization>
			<organizationUrl>http://www.bergmann-it.de</organizationUrl>
			<timezone>+1</timezone>
			<roles>
				<role>project founder</role>
				<role>architect</role>
				<role>developer</role>
			</roles>
		</developer>
	</developers>

	<dependencies>

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

	</dependencies>

	<build>

		<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>
			</resource>

			<resource>
				<filtering>false</filtering>
				<directory>${basedir}</directory>
				<includes>
					<include>LICENSE.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>com.mycila</groupId>
				<artifactId>license-maven-plugin</artifactId>
				<version>2.6</version>
				<configuration>
					<header>src/license/license-template.txt</header>
					<properties>
						<owner>Volker Bergmann</owner>
						<email>volker.bergmann@bergmann-it.de</email>
						<year>2011-2014</year>
					</properties>
					<includes>
						<include>src/main/java/**/*.java</include>
						<include>src/test/java/**/*.java</include>
					</includes>
					<mapping>
						<java>SLASHSTAR_STYLE</java>
					</mapping>
				</configuration>
				<executions>
					<execution>
						<goals>
							<goal>check</goal>
						</goals>
						<phase>verify</phase>
					</execution>
					<!--
					<execution>
						<goals>
							<goal>format</goal>
						</goals>
						<phase>process-sources</phase>
					</execution>
					-->
				</executions>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.1</version>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-resources-plugin</artifactId>
				<version>2.6</version>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-assembly-plugin</artifactId>
				<version>2.4.1</version>
				<configuration>
					<descriptors>
						<descriptor>src/main/assembly/dist-assembly.xml</descriptor>
					</descriptors>
				</configuration>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-site-plugin</artifactId>
				<version>3.4</version>
			</plugin>

		</plugins>

	</build>

	<reporting>

		<plugins>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-report-plugin</artifactId>
				<version>2.17</version>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-pmd-plugin</artifactId>
				<version>3.2</version>
				<configuration>
					<linkXref>true</linkXref>
					<minimumTokens>100</minimumTokens>
					<targetJdk>1.6</targetJdk>
				</configuration>
			</plugin>

			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>jdepend-maven-plugin</artifactId>
				<version>2.0</version>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-project-info-reports-plugin</artifactId>
				<version>2.7</version>
				<reportSets>
					<reportSet>
						<reports>
							<report>dependencies</report>
							<report>project-team</report>
							<report>license</report>
						</reports>
					</reportSet>
				</reportSets>
			</plugin>

		</plugins>

	</reporting>

	<profiles>
		<profile>
			<id>release</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-source-plugin</artifactId>
						<version>2.3</version>
						<executions>
							<execution>
								<id>attach-sources</id>
								<goals>
									<goal>jar-no-fork</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>
							</execution>
						</executions>
					</plugin>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-gpg-plugin</artifactId>
						<version>1.5</version>
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>

	<distributionManagement>
		<snapshotRepository>
			<id>ossrh</id>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
		<repository>
			<id>ossrh</id>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
	</distributionManagement>

	<scm>
		<connection>scm:svn:http://svn.code.sf.net/p/contiperf/code</connection>
		<developerConnection>scm:svn:https://svn.code.sf.net/p/contiperf/code</developerConnection>
		<url>https://sourceforge.net/p/contiperf/code/HEAD/tree/</url>
	</scm>

</project>

POM Entry

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

Download

If you think the following contiperf-2.3.4.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download contiperf-2.3.4.jar file




PreviousNext

Related