I'm aware I can add maven repositories for fetching dependencies in ~/.m2/settings.xml. But is it possible to add a repository using command line, something like:
mvn install -Dmaven.repository=http://example.com/maven2
The reason I want to ... |
I would like to host a Maven repository for a framework we're working on and its dependencies. Can I just deploy my artifacts to my ftp host using mvn deploy, or ... |
Some of the other questions and answers here on SO extol the virtues of using an enterprise repository tool like Archiva, Artifactory, or Nexus. What are the pros and cons of ... |
Let's say that you have a project which is using a 3rd party library, such as Google's Analytics Data API (gdata), which does not appear to be currently deployed ... |
I am trying to use a Maven 2 repository via SSL secured with a self-signed certificate. I followed the instructions at HTTPS and Self-Signed Certificates in Java but I ... |
I have a couple of questions about maven best practices and managing repositories.
In my environment, I do not want to go out to the central maven repository but rather store everything ... |
I want to add the oracle jdbc driver to my project as dependency (runtime scope) - ojdbc14.
In MVNrepository site the dependency to put in the POM is:
<dependency>
<groupId>com.oracle</groupId>
...
|
|
I'm aware of the archetype list in codehaus. Are there any other good places to find Maven archetypes out there?
|
What is the best way to put javascript/html/css code in the maven repository, so that is easily usable by java projects.
Is there a way to do it such that the included ... |
I'm reconfiguring a build server that someone else setup a long time ago to use a new Maven repository. However, the old repository is still being referenced and I can't ... |
I have set up a Maven 2 repository (call 'dev repository') using Apache Archiva which holds artifacts of my private projects.
If I build an artifact of my own project, say ... |
I'm moving an application out of an svn repository it shares with a bunch of other stuff into its own, brand new one. So, I have a chance to make a ... |
What Maven repository can I use for EJB 3.1 API dependency?
|
Our company would like to mirror our Maven 2 Repository inside of the Amazon network.
What software should one use to do this?
We have looked into a Wagon-S3 but that sort of ... |
Does anyone know if the Thrift libraries are in any Maven repository?
|
I am taking over a project left by previous colleague. The project is mavenized and I'm having a hard time building it. There is a inside block, which generates ... |
I'm trying to generate a jasperReport, but I receive this:
net.sf.jasperreports.engine.util.JRFontNotFoundException: Font 'Times New Roman' is not available to the JVM. See the Javadoc for more details.
After searching on the net, I ... |
What command can I use to ask Maven for a list of the default repositories that it searches for its dependencies? If no such command exists, where else may I ... |
I know I can use maven to pull the javadocs for an artifact (if they've been added), which should come through as a JAR (right?), which I can then unpack and ... |
http://hsqldb.org/ - where is the maven repository for the latest version 2.0.0 bits
|
I add the "http://caucho.com/m2" or "http://caucho.com/m2-snapshot" repository address but is error .Message is
Unable to update index for caucho release repository|http://caucho.com/m2: Resource nexus-maven-repository-index.properties does not exist
Where is the new address?
|
I use maven to build projects and it gets stuck at ftp.cica.es/mirrors/maven2 repository. What is the way around it?
|
mavensearch.net doesn't know current versions in many cases, mvnrepository.com is a bit more up to date but doesn't show repositories from where a package can be downloaded, ... |
I have been using Selenium Webdriver successfully with JAR downloaded from their pages or code.google. But now I would like convert my project to use Maven repository. I found ... |
When I build using maven I see it checking all sort of foreign repositories for artifacts which only my local build should produce. How can I tell it that the ... |
I would like to use an embedded openRDF sesame repository in my Java application. I can not find information what is a minimum set of libraries that I need to include ... |
I need maven repository for DynamicJasper 3.1.2 or higher...
Thanks in advance!
|
I am converting a project to use Ant/maven-ant-tasks. I have a local repository in $HOME/.m2, an enterprise repository on a local machine on the LAN, and I have listed several global ... |
I am looking for a maven repository that distributes jung2 packages. Unfortunetely I can not find any information on its location.
Update:
I have included the cental repository repo1.
<repository>
...
|
a simple question about maven repository server
can a pom file have dependencies of jar files
located on different repositories on the same server ?
|
Trying to get my code to compile magically using maven dependancies. I can't find the playframework on any 3rd party maven repository.
Can someone help ? I is even deployed anywhere ?
... |
How would you collaborate on a Maven project with another developer, without setting up a repository on a dedicated server?
|
Is there something similar to Artifactory/Nexus/Archiva, but which works for pure source code as opposed to build artefacts, and does not depend either on Java or on using Maven in the ... |
I am trying to use QPid as a JMS provider. Maven is used as a build tool. I cannot locate maven repository that contains QPid, so my build fails.
Questions
- does somebody know ...
|
I've been struggling to get ehcache 2.1.0 in my environment.anytime i thought i got it right, it's just not downloading it. here is where i set the repository
<repository>
<!--<url>https://oss.sonatype.org/content/repositories/releases/</url>-->
...
|
In windows, maven downloads everything in the C:\Documents And Settings\MyUser\.m2 folder (or C:\Users\MyUser\.m2). There exists some way to change the folder that it uses? Specially I want to set it to ... |
I have just begun my journey in Maven2 and found the dependency repositories logic a little weird...
As far as I understand, I need to point Maven to a repository from ... |
Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.5:deploy (default-deploy) on project mysticpaste: Deployment failed: repository element was not specified in the POM inside distributionManagement element or in -DaltDeploymentRepository=id::layout::url parameter -> [Help 1]
POM.xml
<project xmlns="http://maven.apache.org/POM/4.0.0"
...
|
I would like to use grape to install a library by command-line. So I've issued the command:
grape -V install org.apache.derby derby 10.5.3.0
Grape should use the Maven repository located at http://127.0.0.1:8081/artifactory/webapp/home.html. How ... |
I would like to use a repository manager to accommodate my local and remote jar..But i am a newbie to maven.. So any suggestions among these repository managers .. :)
archetype
apache ... |
Sigh.
Using maven 2.2.1, and suddenly it can't resolve the maven-clean-plugin. And really, how insane is it that a build tool requires a plugin for "clean"?
I tried syncing up my .m2 ... |
Normally, I have the following mirror configured in my Maven settings.xml
<mirror>
<id>internal-repository</id>
<url>http://build.idaho.local/wtp_repository</url>
<mirrorOf>*</mirrorOf>
</mirror>
My understanding is that this mirror prevents Maven from downloading dependencies from the internet, i.e. ... |
I am wondering how to find the maven repository close to my home?
|
I'm developing a code-sharing plugin for eclipse (for a bachelor thesis project).
Currently I'm trying to scan a maven repository and generate a package list.
I can download and parse a pom.xml using ... |
I already asked in Maven User List, let me duplicate here.
I'm trying to create an application that will download and use Maven
artifacts outside of Maven. I think that ... |
I am unable to install Maven in Eclipse galileo. When i tried to install it thru help-->install software, and given url="http://m2eclipse.sonatype.org/sites/m2e". But after sometime it just displays "Unable to connect to ... |
I would like to use functional Java 3.0 in a maven project. I have been googling a little, but I can't find valid information to include the corresponsding 'dependency' ... |
I would be developing a pom.xml for my project, the issue is we will have almost 15 different profiles depending on the modules we want to build for that specific profile.(Its ... |
I am trying to add the Apache httpcomponents-client library to my Maven project. I have added a dependency to pom.xml (as found on http://mvnrepository.com/artifact/org.apache.httpcomponents/httpcomponents-client/4.1.1), but when building my Eclipse ... |
I'm trying to get the EclipseLink libraries from the given Maven repositories.
I read the tips given in Where did the EclipseLink/Maven repository go to? on stackoverflow and tried to integrate ... |
Where can I find the Maven repositories for the latest versions of Jasper Reports? I've tried in the main site but it seems that the repo isn't up to date.
|
To make my code flexible I would like to find a way to get the maven 2 repository directory via a function like System.getProperty("m2repo") or something, as we do for the ... |
I'm using a local Nexus instance as mirror for all repositories; in settings.xml:
<mirrors>
<mirror>
<id>nexus</id>
...
|
I'm searching the repository for jasperreports-chart-themes (groupId : net.sf.jasperreports).
I know that jasperreports lib is here http://repo2.maven.org/maven2/net/sf/jasperreports, but there is no track of jasperreports-chart-themes ...
|
I have downloaded the source of Jbox2d using:
svn checkout http://jbox2d.googlecode.com/svn/trunk/ jbox2d-read-only
How do I import the source code of Jbox2d into my maven repository to be used as a dependancy? ... |
I'm working on a small project with one other developer. We are using libraries that are all available in public maven repositories. We have a single, multi-module maven project ... |
I am searching for selenium standalone (2.0rc3) in any maven repository. I am interested only in the standalone version and I can't find it. Is it available anywhere (not to download ... |
I have a maven repository in an offline network.
I need to update its contents and merge in another repository .
What is the best method to do this ? I looked ... |
<repository>
<id>oauth-maven-repo</id>
<name>OAuth Maven repository</name>
<url>http://oauth.googlecode.com/svn/code/maven</url>
<layout>default</layout>
</repository>
What does repository layout mean, compared to setting snapshots / releases?
|
Is there any free online private maven2 or maven3 repository? So that team can access the repository from various region.
|
I'm trying to create my own maven archetype. For now, I'm going through this tutorial [here][1] without success. I'm able to build the archetype project okay, but when I ... |
I have a Maven project that requires some dependencies that are in a repository located behind HTTPS. I can access the URL by my browser (Firefox) as it asks me a ... |
Why maven 3 depreciated false at Snapshot repository configuration at pom.xml? What is the motivation behind it?
<snapshotRepository>
<id>snapshots</id>
<url>http://nexus.mycompany.local/content/repositories/snapshots</url>
...
|
We are using maven in the development process. Maven provides a nice feature of configuring the repositories. Using this feature I have created a remote internal repository and I can download ... |
i have a repository setup like this
<repository>
<id>jboss</id>
<name>JBoss Repository for Maven</name>
...
|
RESOLVED
P.S.Because I don't have enough reputation to answer my own question right now so I put the solution in the question.
I just start using Maven with my android project. I use ... |
Yes, I know, the subject was asked before, but the repository moved again. Has anybody seen it? I would be much obliged.
|
The main reason why we gave up on Maven is that we had firewall changes that blocked us from downloading .jar files directly onto machines on our LAN. Now, if I could have put my hand on my heart and said to our network administrator that these repositories were absolutely safe I might have got these sites whitelisted. Truth is I ... |