basher
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.sourceforge.basher</groupId>
<artifactId>basher</artifactId>
<version>1.0.2</version>
</dependency><!--
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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>net.sourceforge.basher</groupId>
<artifactId>basher</artifactId>
<packaging>jar</packaging>
<version>1.0.2</version>
<name>Basher</name>
<url>http://basher.sourceforge.net</url>
<inceptionYear>2006</inceptionYear>
<description>A tool to assist in creating reproducible test environments for profiling and performance testing of
POJO services
</description>
<properties>
<currentVersion>${project.version}</currentVersion>
</properties>
<distributionManagement>
<site>
<id>sourceforge.net</id>
<url>scp://shell.sourceforge.net/home/groups/b/ba/basher/htdocs</url>
</site>
<repository>
<id>sourceforge.net</id>
<url>scp://shell.sourceforge.net/home/groups/b/ba/basher/htdocs/repository</url>
</repository>
</distributionManagement>
<mailingLists>
<mailingList>
<name>Basher Development Mailing list</name>
<subscribe>http://lists.sourceforge.net/mailman/listinfo/basher-devel</subscribe>
<unsubscribe>http://lists.sourceforge.net/mailman/listinfo/basher-devel</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum_id=158736</archive>
<post>jwebunit-devel@lists.sourceforge.net</post>
</mailingList>
<mailingList>
<name>Basher User Mailing list</name>
<subscribe>http://lists.sourceforge.net/mailman/listinfo/basher-user</subscribe>
<unsubscribe>http://lists.sourceforge.net/mailman/listinfo/basher-user</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum_id=158736</archive>
<post>jwebunit-basher@lists.sourceforge.net</post>
</mailingList>
</mailingLists>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>johanlindquist</id>
<email>johanlindquist@users.sourceforge.net</email>
<name>Johan Lindquist</name>
<timezone>+1</timezone>
<roles>
<role>Architect</role>
<role>Documentation</role>
<role>Java Developer</role>
<role>Release Manager</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:svn:https://basher.svn.sourceforge.net/svnroot/basher/tags/basher-1.0.2</connection>
<developerConnection>scm:svn:https://basher.svn.sourceforge.net/svnroot/basher/tags/basher-1.0.2</developerConnection>
<url>http://basher.svn.sourceforge.net/viewvc/basher/tags/basher-1.0.2</url>
</scm>
<issueManagement>
<system>SourceForge</system>
<url>http://sourceforge.net/tracker/?group_id=158736</url>
</issueManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/source.xml</descriptor>
<descriptor>src/main/assembly/distribution.xml</descriptor>
</descriptors>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/Test*.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>2.0-beta-6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-docck-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>hivemind</groupId>
<artifactId>hivemind</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>hivemind</groupId>
<artifactId>hivemind-lib</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.8</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>oro</groupId>
<artifactId>oro</artifactId>
<version>2.0.8</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>javassist</artifactId>
<version>3.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>bsh</groupId>
<artifactId>bsh</artifactId>
<version>2.0b1</version>
</dependency>
<dependency>
<groupId>easymock</groupId>
<artifactId>easymock</artifactId>
<version>1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jfree</groupId>
<artifactId>jfreechart</artifactId>
<version>1.0.7</version>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clover-plugin</artifactId>
<configuration>
<licenseFile>/home/johan/bin/clover.license</licenseFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<inherited>false</inherited>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
<configuration>
<issueLinkTemplate>http://sourceforge.net/support/tracker.php?aid=%ISSUE%</issueLinkTemplate>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changelog-plugin</artifactId>
<reportSets>
<reportSet>
<id>dual-report</id>
<configuration>
<type>range</type>
<range>30</range>
</configuration>
<reports>
<report>changelog</report>
<report>file-activity</report>
<report>dev-activity</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<targetJdk>1.5</targetJdk>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
<!--
<plugin>
<groupId>net.sf</groupId>
<artifactId>stat-scm</artifactId>
</plugin>
-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<configuration>
<tags>
<tag>TODO</tag>
<tag>FIXME</tag>
<tag>REFACTOR</tag>
<tag>@todo</tag>
<tag>@deprecated</tag>
</tags>
</configuration>
</plugin>
</plugins>
</reporting>
</project>