Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Error Maven dependency #302

Open
Freeman-com opened this issue Jan 7, 2021 · 5 comments
Open

Error Maven dependency #302

Freeman-com opened this issue Jan 7, 2021 · 5 comments

Comments

@Freeman-com
Copy link

Freeman-com commented Jan 7, 2021

Screenshot_2
Your dependency is not working. The Maven repository does not have it !!! Fix pls

@glenn-boudaer1990
Copy link

glenn-boudaer1990 commented Jan 8, 2021

I had same issue. Have a look here to resolve: #149.
Fixed for me.

@patztablook22
Copy link

Change the version to 1.0.1
Yeah, annoying. It should be fixed soon.

@omerg
Copy link

omerg commented Jan 23, 2021

I've forked the project and then published to Maven Central Repository. Here is the dependency information:

<dependency>
  <groupId>tr.com.lucidcode</groupId>
  <artifactId>binance-api-client</artifactId>
  <version>1.0.0</version>
</dependency>

@malakeel
Copy link

malakeel commented Apr 5, 2021

The idea of using maven, is to be able to publish the artefact to a maven repo and make it available to others without having to install it manually.

@mads2
Copy link

mads2 commented Jul 21, 2021

Just

  1. Clone this repo
  2. mvn install
  3. mv target/binance-api-client-1.0.1.jar {your-project-directory}
  4. add this to you pom.
		<dependency>
			<groupId>com.binance.api</groupId>
			<artifactId>binance-api-client</artifactId>
			<systemPath>${basedir}/binance-api-client-1.0.1.jar</systemPath>
			<scope>system</scope>
			<version>1.0.1</version>
			<type>jar</type>
		</dependency>
  1. add the dependencies
  • Alternatively, use mvn assembly:assembly -DdescriptorId=jar-with-dependencies but I'm not sure the implications on doing it.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants