Re: [m2e-users] Cannot install in eclipse Juno

2012-08-09 Thread Jae
Hi all, Like Mathew I cannot install the egit scm, however, after following the instructions already posted, I end up with a slight variant of the same message; one complaining about a different plugin: bundle org.eclipse.egit.core [1.0.0,2.0.0) When checking the plugin details for egit, I n

Re: [m2e-users] Cannot install in eclipse Juno

2012-08-09 Thread Matthew Piggott
If you search the list archives you should find a few answers for this problem On 9 August 2012 10:00, Jae wrote: > Hi all, > > Like Mathew I cannot install the egit scm, however, after following the > instructions already posted, I end up with a slight variant of the same > message; one complai

Re: [m2e-users] Cannot install in eclipse Juno

2012-08-09 Thread Mykola Nikishov
On 08/09/2012 05:00 PM, Jae wrote: > When checking the plugin details for egit, I noticed that the installed > version for the org.eclipse.egit.core plugin is 2.0.0.201206130900-r and > I assume this is the reason the dependency is not met. So, even with the > suggestion to enable the Juno update

Re: [m2e-users] m2e duplicate entires inside JAR crash jarsigner

2012-08-09 Thread Myron
Am 09.08.2012 08:15, schrieb Andreas Magnusson: > In my experience, you get this behaviour if you don't do mvn clean package. > /Andreas Yes, you're right. The problem is, that most of our devs to a project rightclick -> run as -> maven install within eclipse. Why? Because its there... and it worke

[m2e-users] Download sources and javadoc not working

2012-08-09 Thread Billy Newman
So I successfully got m2e plugin installed. But I am having issues with downloading sources and Javadocs. I went through the window-> preferences -> maven and selected both checkboxes. I then right click my pom file and select run as maven install. My build runs and installs just fine but none

Re: [m2e-users] Download sources and javadoc not working

2012-08-09 Thread Igor Fedorenko
Not sure what you expected to happen, but download sources/javadoc apply to dependencies of workspace projects. In most cases you do not need to enable them, m2e will automatically download dependency sources when you navigate to one of dependency classes using F3 or step into it in debugger. --

Re: [m2e-users] Download sources and javadoc not working

2012-08-09 Thread Billy Newman
So if I am dependent on some-API.jar its in my pom and pulled from my maven repo, then I should get some-API-sources.jar as well when I install right? I tried stepping into the jars classes and they are not found and the sources jar is not in my local repository so it did not get downloaded.

Re: [m2e-users] Download sources and javadoc not working

2012-08-09 Thread Igor Fedorenko
This is expected to work. Check if some-API-sources.jar is actually available from remote repositories enabled in pom.xml. Check you are running m2e 1.1, especially if you are on Juno. If still does not work, provide small standalone example project and expect steps to reproduce the problem and

Re: [m2e-users] Download sources and javadoc not working

2012-08-09 Thread Billy Newman
Is this only expected to work in version 1.1? I work in an env where I cannot connect to the internet. I have version 1.0 of m2e installed in eclipse indigo. I have my own repository (Archiva repository). When I publish my API jar I publish it with the javadocs, and yes I have verified that the

Re: [m2e-users] Download sources and javadoc not working

2012-08-09 Thread Igor Fedorenko
1.1 is only required for Juno. 1.0 is expected to work with Indigo. I use sources download all the time, so I am quite certain it worked without problems in 1.0 on Indigo and works in 1.1 on Juno now. I never payed attention to dependencies that only provide javadoc and no sources. Have you tried

Re: [m2e-users] Download sources and javadoc not working

2012-08-09 Thread Billy Newman
It could be archiva, although I am not sure why I would be able to download sources and Javadocs using the dependency plugin and not with m2e. Quick question so I can debug this tomorrow. Is m2e supposed to pull the sources and/or Javadocs at the same time it pulls the main artifact? Ie when I

Re: [m2e-users] Download sources and javadoc not working

2012-08-09 Thread Matthew Piggott
It will only download sources when an attempt to access them is made. On 9 August 2012 22:34, Billy Newman wrote: > It could be archiva, although I am not sure why I would be able to > download sources and Javadocs using the dependency plugin and not with m2e. > > Quick question so I can debug t