JsTestDriver - 缺少工件错误

时间:2012-07-11 13:06:25

标签: unit-testing maven-plugin maven-3 js-test-driver

我正在尝试将 JsTestDriver 集成到 Maven ,以便在部署之前测试我的脚本。 实际上,我会按照Google代码here中描述的步骤进行操作。但不幸的是,我无法解决依赖问题。尽管我将存储库和插件存储库添加到了我的Maven settings.xml ,但我仍然收到错误'缺少工件com.googlecode.jstd-maven-plugin:jstd-maven-plugin:jar: 1.3.2.5 ”。

如果有人可以纠正/引导我,我会很高兴。

提前致谢。

关于。

的settings.xml

// ..................
<repository>
    <id>jstd-maven-plugin google code repo</id>
    <url>http://jstd-maven-plugin.googlecode.com/svn/maven2</url>
</repository>
<pluginRepository>
    <id>jstd-maven-plugin google code repo</id>
    <url>http://jstd-maven-plugin.googlecode.com/svn/maven2</url>
</pluginRepository>
// ..................

的pom.xml

// ..................
<properties>
    <jstd.version>1.3.2.5</jstd.version>
</properties>
<dependency>
    <groupId>com.googlecode.jstd-maven-plugin</groupId>
    <artifactId>jstd-maven-plugin</artifactId>
    <version>${jstd.version}</version>
    <scope>test</scope>
</dependency>
<plugin>
<groupId>com.googlecode.jstd-maven-plugin</groupId>
<artifactId>jstd-maven-plugin</artifactId>
<version>${jstd.version}</version>
<configuration>
    <port>9876</port>
    <reset>true</reset>
    <verbose>true</verbose>
    <server>localhost:9876</server>
    <runnerMode>INFO</runnerMode>
    <config>src/test/resources/jsTestDriver.conf</config>
    <jar>src/test/resources/JsTestDriver-1.3.4.b.jar</jar>
</configuration>
<executions>
    <execution>
        <id>run-tests</id>
        <phase>test</phase>
        <goals>
            <goal>test</goal>
        </goals>
    </execution>
</executions>
</plugin>
// ..................

1 个答案:

答案 0 :(得分:1)

尝试将以下内容添加到项目pom.xml文件中:

<repositories>
    <repository>
        <id>jstd-maven-plugin google code repo</id>
        <url>http://jstd-maven-plugin.googlecode.com/svn/maven2</url>
    </repository>
</repositories>

<pluginRepositories>
    <pluginRepository>
        <id>jstd-maven-plugin google code repo</id>
        <url>http://jstd-maven-plugin.googlecode.com/svn/maven2</url>
    </pluginRepository>
</pluginRepositories>

希望这有帮助。