You can download scalatest-maven-plugin-1.0.jar in this page.
the Apache License, ASL Version 2.0
scalatest-maven-plugin-1.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.scalatest/scalatest-maven-plugin/pom.properties META-INF/maven/org.scalatest/scalatest-maven-plugin/pom.xml META-INF/maven/plugin.xml mojoResources.properties org.scalatest.tools.maven.AbstractScalaTestMojo.class org.scalatest.tools.maven.MojoUtils.class org.scalatest.tools.maven.ReporterMojo.class org.scalatest.tools.maven.TestMojo.class
scalatest-maven-plugin-1.0.pom file content.
<?xml version="1.0"?> <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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>org.scalatest</groupId> <artifactId>scalatest-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <version>1.0-M2</version> <name>ScalaTest Maven Plugin</name> <description>Integrates ScalaTest into Maven</description> <properties> <scala.version>2.8.1</scala.version> <scalatest.version>1.2</scalatest.version> <maven.scala.plugin.version>2.14.1</maven.scala.plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <build.timestamp>${maven.build.timestamp}</build.timestamp> <maven.build.timestamp.format>yyyy-MM-dd</maven.build.timestamp.format> </properties> <licenses> <license> <name>the Apache License, ASL Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>http://code.google.com/p/scalatest/source/browse/tags/scalatest-maven-plugin-1.0-M2</url> <connection>scm:svn:https://scalatest.googlecode.com/svn/tags/scalatest-maven-plugin-1.0-M2</connection> <developerConnection>scm:svn:https://scalatest.googlecode.com/svn/tags/scalatest-maven-plugin-1.0-M2</developerConnection> </scm> <developers> <developer> <id>teigen</id> <name>Jon-Anders Teigen</name> </developer> <developer> <id>trenchguinea</id> <name>Sean Griffin</name> <email>trenchguinea@gmail.com</email> </developer> </developers> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.0.9</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.0.9</version> </dependency> <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-api</artifactId> <version>2.0.9</version> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-sink-api</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest</artifactId> <version>${scalatest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <version>${scala.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>src/main/java</sourceDirectory> <testSourceDirectory>src/test/scala</testSourceDirectory> <pluginManagement> <plugins> <plugin> <artifactId>maven-site-plugin</artifactId> <version>2.3</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.scala-tools</groupId> <artifactId>maven-scala-plugin</artifactId> <version>${maven.scala.plugin.version}</version> <executions> <execution> <goals> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.5</version> <configuration> <argLine>-enableassertions</argLine> </configuration> </plugin> <plugin> <artifactId>maven-invoker-plugin</artifactId> <version>1.3</version> <executions> <execution> <id>integration-test</id> <phase>integration-test</phase> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> <configuration> <skipInvocation>false</skipInvocation> <projectsDirectory>src/it</projectsDirectory> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <pomIncludes> <pomInclude>lift/pom.xml</pomInclude> <pomInclude>scalatestexamples/pom.xml</pomInclude> </pomIncludes> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <streamLogs>true</streamLogs> <settingsFile>src/it/settings.xml</settingsFile> <properties> <scala.version>${scala.version}</scala.version> <scalatest.version>${scalatest.version}</scalatest.version> <maven.scala.plugin.version>${maven.scala.plugin.version}</maven.scala.plugin.version> </properties> <goals> <goal>clean</goal> <goal>test</goal> <goal>site</goal> </goals> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.5.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.6</version> <configuration> <filteringChanges>true</filteringChanges> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <configuration> <charset>UTF-8</charset> <docencoding>UTF-8</docencoding> <docfilessubdirs>true</docfilessubdirs> <show>package</show> <source>1.5</source> <detectLinks>true</detectLinks> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.2</version> <configuration> <inputEncoding>UTF-8</inputEncoding> <outputEncoding>UTF-8</outputEncoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.5</version> </plugin> </plugins> </reporting> <profiles> <profile> <id>maven-3</id> <activation> <file> <!-- This employs that the basedir expression is only recognized by Maven 3.x (see MNG-4760) --> <exists>${basedir}</exists> </file> </activation> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.0</version> </plugin> </plugins> </pluginManagement> </build> </profile> </profiles> </project>
<dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest-maven-plugin</artifactId> <version>1.0</version> </dependency>
If you think the following scalatest-maven-plugin-1.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download scalatest-maven-plugin-1.0.jar file