m2e

Maven discovery completed without finding any extensions

放肆的年华 提交于 2019-12-21 09:16:49
问题 I have installed eclipse 4.3 on my system and recently installed the Maven integration plugin. I get the following error: Discovery completed without finding any extensions. Please check your network connection and try again. The catalog url is http://download.eclipse.org/technology/m2e/discovery/directory-1.4.xml Note : No proxies, no network issues 回答1: There is a Java update 1.7.0_45 which fixes that problem. 回答2: I was having the same issue on Mac OS X 10.8.5 with eclipse-kepler and Java

M2E Cron jobs not automatically running in Magento [closed]

人走茶凉 提交于 2019-12-20 07:35:12
问题 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 5 months ago . We've installed M2E on a Magento installation for a client - all the Cron jobs are set to run but unless we do them manually, they just aren't running. Running them manually does work fine. I have read through lots of documentation and support tickets but there seems to be no identification of a similar problem

M2E Cron jobs not automatically running in Magento [closed]

北慕城南 提交于 2019-12-20 07:34:51
问题 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 5 months ago . We've installed M2E on a Magento installation for a client - all the Cron jobs are set to run but unless we do them manually, they just aren't running. Running them manually does work fine. I have read through lots of documentation and support tickets but there seems to be no identification of a similar problem

Maven dependencies are not copied to WEB-INF/lib in eclipse

随声附和 提交于 2019-12-20 04:30:28
问题 I have a maven web project in Eclipse (Spring Tool Suite to be precise), and for some reason my maven dependencies do not end up in WEB-INF/lib, so I get all sorts of runtime errors. This was working last week, and I'm not sure what action caused it to stop working. Project Properties -> Deployment Assembly shows Maven Dependencies deploying to WEB-INF/lib, and I've tried to do Maven -> Update Project, restart the IDE, clean/install, etc. Here is my POM: <?xml version="1.0" encoding="UTF-8"?>

How do i uninstall m2e in eclipse kepler

蓝咒 提交于 2019-12-20 03:53:09
问题 I just download eclipse kelper and found out the m2e and m2e-wtp plugins had been installed,and the new m2e plugins has no "package" of the lifecycle,how do i uninstall it? ================================================= http://m2eclipse.sonatype.org/sites/m2e this is the update site i used in eclipse juno(now it seems 404 error). 回答1: Click Help-> About Eclipse -> Installation Details -> Installed Software Find out your software Click uninstall 回答2: Download fresh copy of Eclipse Kepler.

Where is the “Maven->Update project configuration” menu item?

…衆ロ難τιáo~ 提交于 2019-12-19 19:43:31
问题 I am having a Missing Maven dependencies in Eclipse project exactly as described in this question, and I would love to use the solution found, but when I right-click my project in Project Explorer I can't find any such menu item: If I right-click the project's pom.xml , all I see in the Maven's menu is: Any idea what I should be doing to enable that Update project configuration menu option? 回答1: Righ click on the project: >Configure>Convert to Maven project And then you can Update project

How to use maven with Java9.0.1 and pom packaging in Eclipse Oxygen 1a Release (4.7.1a)?

倾然丶 夕夏残阳落幕 提交于 2019-12-19 04:55:41
问题 The maven project example that is given below shows an error in module-info.java in Eclipse Oxygen: log4j.api cannot be resolved to a module. If I remove the line <packaging>pom<packaging> from pom.xml the error disappears. However, I need to use pom packaging. If I use Java8 without module definitions, the maven part in my real world example works very well. Trying to migrate to Java9 confronted me with this new issue. First I thought I would not correctly reference the log4j dependency.

Eclipse Helios + maven m2e + Groovy == FAIL

帅比萌擦擦* 提交于 2019-12-19 02:47:16
问题 Ever since I've installed the new m2e plugin for maven, my Groovy project no longer builds. I'm using the groovy-compiler-plugin as described here. I get the old "plugin execution not covered..." error for the maven-compiler-plugin. I've tried both execute and ignore for the goals "testCompile" and "compile" as described in the error. I can't use GMaven due to some arcane compiler issues. I also am locked to Maven 2.2.1 due to my company's build process. The old m2eclipse plugin is gone, and

How to define access rules for classpath entries in maven pom.xml file for Eclipse & M2E?

。_饼干妹妹 提交于 2019-12-18 17:28:31
问题 In order to avoid illegal access warnings for jfxrt.jar I manually changed my classpath file to include access rules: Wanted classpath entry <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"> <attributes> <attribute name="maven.pomderived" value="true"/> </attributes> <accessrules> <accessrule kind="accessible" pattern="javafx/**"/> <accessrule kind="accessible" pattern="com/sun/javafx/**"/> <

How to force Eclipse m2e plugin to use jdk for a project

笑着哭i 提交于 2019-12-18 13:27:49
问题 I'm using Maven with 'Eclipse Kepler JavaEE'. I have something like this in 'maven-compiler-plugin' : <configuration> <source>1.7</source> <target>1.7</target> </configuration> Each time I'm changing somethin in 'pom.xml', eclipse forces me to perform 'Maven -> Update Project' and than project settings are changed to use JRE instead JDK and some maven builds are stopping to work. The only solution I found to solve it is to set How I can set eclipse/m2e to use JDK is to define a path in maven