mpetazzoni / ttorrent

BitTorrent Java library with tracker and download client
http://mpetazzoni.github.com/ttorrent/
Apache License 2.0
1.38k stars 502 forks source link

The dependency 'net.sf.jargs' maybe useless #263

Open WeiYuanStudio opened 2 years ago

WeiYuanStudio commented 2 years ago

I want import ttorrent to my project , by I found gradle build error.

Could not find net.sf:jargs:1.0.
Required by:
    project : > com.turn:ttorrent:1.4

Possible solution:
 - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html

These line in pom.xml maybe can remove ?

  <dependency>
      <groupId>net.sf</groupId>
      <artifactId>jargs</artifactId>
      <version>1.0</version>
  </dependency>

https://github.com/mpetazzoni/ttorrent/blob/master/pom.xml#L126-L130

Thank you !