Testing
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.e-hoffman.testing</groupId> <artifactId>Testing</artifactId> <version>1.2.5</version> </dependency>
<?xml version="1.0" encoding="UTF8"?> <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> <parent> <groupId>com.salesforce.maven</groupId> <artifactId>MavenParent</artifactId> <version>1.0.8</version> </parent> <groupId>org.e-hoffman.testing</groupId> <artifactId>Testing</artifactId> <version>1.2.5</version> <packaging>pom</packaging> <name>${project.artifactId}</name> <description></description> <modules> <module>AdvisedCore</module> <module>AdvisedJunit4</module> <module>AdviseLogging</module> <module>AdviseContext</module> <module>AdviseStaticEvictingClassloader</module> <module>EhoffmanTestRunner</module> </modules> <properties> <github.domain>github.com</github.domain> <github.owner>rexhoffman</github.owner> <github.project>Testing</github.project> <github.site.location>${project.version}/</github.site.location> <license.regex.MIT>\A/\*$\n^ \* The MIT License$\n^ \* Copyright .?. \d\d\d\d [^$]*$\n^ \*$\n^ \* Permission is hereby granted, free of charge, to any person obtaining a copy$\n^ \* of this software and associated documentation files \(the "Software"\), to deal$\n^ \* in the Software without restriction, including without limitation the rights$\n^ \* to use, copy, modify, merge, publish, distribute, sublicense, and\/or sell$\n^ \* copies of the Software, and to permit persons to whom the Software is$\n^ \* furnished to do so, subject to the following conditions\:$\n^ \*$\n^ \* The above copyright notice and this permission notice shall be included in$\n^ \* all copies or substantial portions of the Software.$\n^ \*$\n^ \* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR$\n^ \* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,$\n^ \* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE$\n^ \* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER$\n^ \* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,$\n^ \* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN$\n^ \* THE SOFTWARE.$\n^ \*\/$\n^</license.regex.MIT> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <parameter.disable.semantic.versioning>true</parameter.disable.semantic.versioning> <parameter.license>MIT</parameter.license> <parameter.license.regex>${license.regex.MIT}</parameter.license.regex> <version.aopalliance>1.0</version.aopalliance> <version.asm>7.0</version.asm> <version.assertj>3.11.1</version.assertj> <version.jgrapht>1.2.0</version.jgrapht> <version.jopt>5.0.4</version.jopt> <version.junit>4.12</version.junit> <version.junit.jupiter>5.1.1</version.junit.jupiter> <version.logback>1.2.3</version.logback> <version.logback>1.2.3</version.logback> <version.slf4j>1.7.25</version.slf4j> <version.spring.framework>5.1.1.RELEASE</version.spring.framework> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>aopalliance</groupId> <artifactId>aopalliance</artifactId> <version>${version.aopalliance}</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${version.logback}</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>${version.logback}</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${version.junit}</version> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${version.assertj}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${version.slf4j}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>${version.spring.framework}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${version.spring.framework}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${version.spring.framework}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>${version.spring.framework}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${version.spring.framework}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-instrument</artifactId> <version>${version.spring.framework}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <properties> <owner>Rex Hoffman</owner> <email>rex@e-hoffman.org</email> </properties> </configuration> </plugin> </plugins> </pluginManagement> </build> <inceptionYear>2016</inceptionYear> <organization> <name>Rex Hoffman</name> <url>https://github.com/rexhoffman/</url> </organization> <licenses> <license> <name>MIT</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <id>rexhoffman</id> <email>rex@e-hoffman.org</email> <timezone>-8</timezone> </developer> </developers> <scm> <connection>scm:git:git:${github.domain}:${github.owner}/${github.project}.git</connection> <developerConnection>scm:git:git:${github.domain}:${github.owner}/${github.project}.git</developerConnection> <url>https://${github.domain}/${github.owner}/${github.project}/blob/master/</url> </scm> </project>