简体   繁体   中英

Importing Beat Link Java Library From Maven Central To Eclipse?

This is the first time I have encountered Maven so I don't really know what I'm doing here.

What I'm trying to accomplish is to import the java library Beat Link into my java code using Maven.

Could anyone please provide a simple step by step on how to do this in eclipse?

On maven central you got the maven dependency text -

<dependency>
<groupId>org.deepsymmetry</groupId>
<artifactId>beat-link</artifactId>
<version>0.6.3</version>
</dependency>

Once you create a maven project you should have a pom.xml file. You need to add this text to the dependencies section of your pom.xml file.

If that doesnt make sense to you, do yourself a favor and read/watch a quick tutorial about using maven on a java project. It's pretty simple once you see how it works.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM