1
我正在嘗試整合JsTestDriver到Maven在部署前測試我的腳本。 其實,我會按照Google代碼here中描述的步驟進行操作。但不幸的是,我無法解決依賴關係。儘管我在我的Maven settings.xml中添加了repository和plugin-repository,但我仍然收到錯誤'缺少工件com.googlecode.jstd-maven-plugin:jstd-maven-plugin:jar:1.3.2.5'。JsTestDriver - 丟失的神器錯誤
如果有人能夠引導我,我會非常高興。
在此先感謝。
問候。
的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>
// ..................