1

私は Maven と Jasmine を初めて使用します。まず、github ページの使用例に従ってみます。これが最初のコマンドです。

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

ここで archtype リポジトリにアクセスすると、 ; 最新のスナップショットは 1.2.0 です。上記のコマンドは、 の 1.3.1 を参照してい-DarchetypeVersion=1.3.1.0-SNAPSHOTます。

次のエラーが表示されます。

プロジェクトstandalone-pomで目標org.apache.maven.plugins:maven-archetype-plugin:2.2:generate (default-cli)を実行できませんでした:目的のアーキタイプが存在しません(com.github.searls:jasmine-archetype:1.3 .1.0-スナップショット)

使用すべき別のリポジトリはありますか?

乾杯

4

1 に答える 1

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
于 2016-07-14T09:53:28.480 に答える