1

私は試しました:https://github.com/OhadR/Authentication-Flows.git を構築するための
mvn clean install -DskipTests -DdownloadSources=true と私は持っています:



...プロジェクト クライアントで目標を実行できませんでした: プロジェクト com.ohadr.auth-flows:client:war:1.0.0-SNAPSHOT の依存関係を解決できませんでした: アーティファクト com.ohadr:authentication-flows:jar:1.6 が見つかりませんでした.2-SNAPSHOT... com.ohadr:authentication-flows:jar:1.6.2-SNAPSHOT の POM がありません。依存関係の情報がありません...


次に、このリポジトリを追加してみました:

     <repository>
       <id>central-maven</id>
       <name>Central Maven</name>
       <url>http://central.maven.org/maven2</url>
     </repository>

jar ( http://central.maven.org/maven2/com/ohadr/authentication-flows/1.6.0-RELEASE/authentication-flows-1.6.2-RELEASE.jar ) をダウンロードし、手動でインストールします。

 mvn install:install-file -DgroupId=com.ohadr \
   -DartifactId=authentication-flows \
   -Dversion=1.6.2-SNAPSHOT \
   -Dpackaging=jar -Dfile=authentication-flows-1.6.2-RELEASE.jar

今私が持っています:

...プロジェクト クライアントで目標 org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) を実行できませんでした: コンパイルの失敗: コンパイルの失敗:... impl/CustomCreateAccountEndpoint.java:[6 ,38] パッケージ com.ohadr.auth_flows.endpoints が存在しません

私は何を間違っていますか?ありがとうございました。

4

1 に答える 1