Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I need to download the JSR 311 Java library (Jersey) jars. Java.net has the API for download but it is inexplicably down and can't seem to find it anywhere else. Can someone please help as I can not continue my current project without Jersey. Thank you
See the JAR files at http://repo1.maven.org/maven2/org/jboss/spec/javax/ws/rs/jboss-jaxrs-api_1.1_spec/1.0.1.Final/
In any case, use a dependency management system like Maven or Ivy to make things easier.
As Alessandro notes in his answer, You really should be using maven at least for dependency management.
That being said, you can get the latest Jersey jars from the apache maven central repository even without using maven:
http://search.maven.org/#artifactdetails%7Ccom.sun.jersey%7Cjersey-bundle%7C1.9%7Cjar
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
Recently I have been trying to figure out how to publish my ScaleNumberPicker Android library from GitHub.
I read articles about publishing to Jitpack, GitHub Packages and Maven Central, but I found it confusing.
What is the difference between these different package repositories, and which one is the best for Android Studio? And how do I publish? Do I need to create a release first on GitHub? And after publishing, can I modify the README.md file on my GitHub repository to add the usage instructions?
JitPack pulls the source from your GitHub repo and builds it (when the first user uses the lib).
For Maven Central and GitHub Packages, you build and upload your own artifacts.
I'd say, the simplest way is JitPack.
Follow the docs to publish the lib. (Follow the Guide to Android)
After adding a release, you still can edit the README, and you can continue to work on the lib.
If you want to publish a new version, just create a new release and update the README.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I'm working on Blackduck remediations and unable to find which jar internally uses org.apache.thrift:libfb303:0.9.0. Particular libfb is not directly part of pom dependency. So I just wanted to know, internally which jar has a reference of it.
Apache Thrift0.9.0
maven: org.apache.thrift:libfb303:0.9.0
4 Known Vulnerability
Short Term Upgrade Recommendation
0.9.1
Vulnerabilities 3 1
Long Term Upgrade Recommendation
0.9.1
You can use the Maven Dependency Plugin for that.
Add the dependency to your pom.xml and simply run:
mvn dependency:tree
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am programming a YouTube-Downloader, and I'd like to use the 2 libraries VGet and WGet, since no other library worked. How do I embed those into my project? I'm using IntelliJ 14.
As noted at the bottom on the pages of those two libraries, the libraries are available on Maven Central.
You could search on Maven for "com.github.axet", e.g. http://search.maven.org/#search%7Cga%7C1%7Ccom.github.axet
Then you'll see the vget and wget libraries. By clicking on the latest version, you come to a page where there is also a jar-file to be downloaded.
But please be aware: Both libraries require additional libraries (e.g. some of the Apache commons libs), which you'll need as well. It is thus highly recommended, to use a dependency management tool like Maven, Ivy or Gradle for your project. I don't know IntelliJ that good, but at least Maven should be supported out of the box. Then all you have to do is specify that you want to use wget and vget, and libraries used by wget or vget will be automatically added to your classpath as well.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
OSGi allows to add/change dependencies aka bundle, when Maven allows to add/change dependencies aka jars.
Then what the difference? It's like hitting the one goal by different ways
Maven is more of a build system you use to create OSGi bundles. The maven creators call it (I might be wrong on this) life cycle management tool. It helps you build, test, integrate and release (also deploy) your software. This includes dependency management on the library or component base.
OSGi on the other hand is more of a runtime thing where a bundle can add services or consume others. (I'm obviously no OSGi expert)
So you can use maven to create OSGi bundles but both technologies do not live in the same context. I think you cannot compare them. They serve a very different purpose.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I wanted to download the Hibernate Annotation Module at the hibernate website but I cant seem to find where the jar files are located.
I only see below links
Hibernate Download Site http://imageshack.us/photo/my-images/192/hibernate.jpg/
Can somebody share with me where it is? I was able to download hibernate-distribution-3.6.6.Final core module but not the annotations
Thanks
If you using Maven you can add dependency of latest GA release.
<dependency>
<groupId>hibernate-annotations</groupId>
<artifactId>hibernate-annotations</artifactId>
<version>3.2.1.GA</version>
</dependency>
Hibernate annotations is included in the core build now so you probably already have it.