Maven的Jasmine插件:SNAPSHOT的问题

时间:2013-03-13 12:09:40

标签: javascript unit-testing maven plugins jasmine

我是Maven和Jasmine的新手,首先我尝试按照on the github page上的用法示例开始,这是第一个开始的命令:

  

mvn archetype:generate -DarchetypeRepository = http://searls-maven-repository.googlecode.com/svn/trunk/snapshots -DarchetypeGroupId = com.github.searls -DarchetypeArtifactId = jasmine-archetype -DarchetypeVersion = 1.3.1.0-SNAPSHOT -DgroupId = com.acme -DartifactId = my-jasmine- project -Dversion = 0.0.1-SNAPSHOT

如果你去the archtype repository here;最新快照是1.2.0。上面的命令引用-DarchetypeVersion=1.3.1.0-SNAPSHOT中的1.3.1。

我收到此错误:

  

无法执行目标org.apache.maven.plugins:maven-archetype-plugin:2.2:生成(default-cli)项目独立-pom:所需的原型不存在(com.github.searls:jasmine-原型:1.3.1.0-SNAPSHOT)

我应该使用另一个存储库吗?

干杯

1 个答案:

答案 0 :(得分:0)

我能够使用此配置生成原型。

mvn archetype:generate \
-DarchetypeRepository=http://repo1.maven.org/maven2/com/github/searls/jasmine-archetype/2.0/ \
-DarchetypeGroupId=com.github.searls \
-DarchetypeArtifactId=jasmine-archetype \
-DarchetypeVersion=2.0 \
-DjasminePluginVersion=2.1 \
-DgroupId=com.test \
-DartifactId=test \
-Dversion=1.0