lastcommons-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>fm.last.commons</groupId> <artifactId>lastcommons-test</artifactId> <version>7.0.2</version> </dependency>
<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>fm.last</groupId> <artifactId>lastfm-oss-parent</artifactId> <version>1.1.0</version> </parent> <groupId>fm.last.commons</groupId> <artifactId>lastcommons-test</artifactId> <version>7.0.2</version> <packaging>jar</packaging> <name>lastcommons-test</name> <description>Last.fm common test utilities</description> <url>https://github.com/lastfm/lastcommons-test</url> <scm> <connection>scm:git:git@github.com:lastfm/${project.artifactId}.git</connection> <developerConnection>scm:git:git@github.com:lastfm/${project.artifactId}.git</developerConnection> <url>https://github.com/lastfm/${project.artifactId}</url> </scm> <properties> <springVersion>3.2.14.RELEASE</springVersion> </properties> <dependencies> <dependency> <groupId>fm.last.commons</groupId> <artifactId>lastcommons-lang</artifactId> <version>3.0.0</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.2</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.0</version> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.5.1</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.0</version> <configuration> <detectLinks>true</detectLinks> <detectJavaApiLink>true</detectJavaApiLink> </configuration> </plugin> </plugins> </build> </project>