2016-07-21 4 views
0

Jitpackを使用してGithubリポジトリをコンパイルしようとしています。
私が使用してきました:Jitpackが機能しない

<repository> 
    <id>jitpack.io</id> 
    <url>https://jitpack.io/ 
</repository> 
<dependency> 
    <groupId>com.github.bys1</groupId> 
    <artifactId>importer</artifactId> 
    <version>0.1-Beta</version> 
    <scope>compile</scope> 
</dependency> 

を私は今、ClassNotFoundExceptionが取得しています。どうすればこの問題を解決できますか?

答えて

0

あなたのpom.xmlは完全に形式が誤っています。これに変更してください。

<repositories> 
    <repository> 
     <id>jitpack.io</id> 
     <url>https://jitpack.io</url> 
    </repository> 
</repositories> 
<dependencies> 
    <dependency> 
     <groupId>com.github.bys1</groupId> 
     <artifactId>importer</artifactId> 
     <version>0.1-Beta</version> 
     <scope>compile</scope> 
    </dependency> 
</dependencies> 

クラス(ImporterPluginなど)を読み込むことができました。

+1

私はそれを使用しましたが、動作しませんでした。私はクラスを持っていたが、それをコンパイルしなかった。 – Priv

関連する問題