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.
Related
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 3 years ago.
Improve this question
I'm trying to get a maven plugin (specifically Jacoco) to run on every maven project, but I can't find much info on this. I don't think settings.xml would work and the lifecycle extension documentation isn't very helpful either.
Any ideas?
Usually, you declare such plugins in a company parent POM and use it as parent in all your projects.
according to maven doc
https://maven.apache.org/settings.html
I think that you can't enforce a plugin on every maven project of a given host. there's no settings directive to do that.
Anyway you can facilitate the command line plugin dedicated goal through pluginGroups settings section.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Improve this question
Apparently I need wls-api.jar to compile the following:
import weblogic.security.principal.WLSUserImpl;
I've downloaded and extracted wls1213_dev.zip and added weblogic-classes.jar, but the WLSUserImpl class seems to be elsewhere.
Where can I find wls-api.jar (or the right jar file)?
According to Oracle docs (https://docs.oracle.com/middleware/1212/wls/WLPRG/overview.htm#WLPRG134):
The wls-api.jar file is located in the wlserver/server/lib directory
of your WebLogic Server distribution
Sorry to ask you these basic questions first but, did you look at this?
Which JAR contains the weblogic.servlet.security.ServletAuthentication class?
Did you also check the classpath to your server libs (and checked if
provided)?
If you are using Maven, do you have the following
<dependency>
<groupId>weblogic</groupId>
<artifactId>wls-api</artifactId>
<version>${weblogic.version}</version>
<scope>provided</scope>
</dependency>
Ref : Using maven as build tool for Weblogic 10.3
I don't mean to offend you by underlining these simple checks first but that would be the first things I would have done. Let me know. Thx
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
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 9 years ago.
Improve this question
I wish to create an internal maven repository on my network. Can anyone show me how to have this done ?
Check out these open-source managers:
Nexus
Archiva
Artifactory
Reposilite
Full list (with also commercial versions):
Repository Management Software
Have a look at Maven Repository Managers such as Nexus: http://maven.apache.org/repository-management.html
Also have a look at how to configure your settings file:
http://www.sonatype.com/books/nexus-book/reference/maven-sect-single-group.html
You are thinking of a deploying a Nexus Repository.