Maven offline mode (-o or maven.mode.online=false) overrides maven.eclipse.src.download and maven.eclipse.javadoc.download
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@531274 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ac953e37d0
commit
129fefd7d5
@ -41,7 +41,7 @@
|
|||||||
</j:if>
|
</j:if>
|
||||||
|
|
||||||
<!-- download the source from the remote repository if necessary -->
|
<!-- download the source from the remote repository if necessary -->
|
||||||
<j:if test="${maven.eclipse.src.download}">
|
<j:if test="${maven.mode.online and maven.eclipse.src.download}">
|
||||||
<eclipse:download-sources
|
<eclipse:download-sources
|
||||||
project="${pom}"
|
project="${pom}"
|
||||||
groupId="${groupId}"
|
groupId="${groupId}"
|
||||||
@ -86,7 +86,7 @@
|
|||||||
<j:otherwise>
|
<j:otherwise>
|
||||||
<classpathentry kind="var" path="MAVEN_REPO/${relativePath}">
|
<classpathentry kind="var" path="MAVEN_REPO/${relativePath}">
|
||||||
<j:set var="jdocs" value="${groupId}/javadoc.jars/${artifactId}-${version}-javadoc.jar" />
|
<j:set var="jdocs" value="${groupId}/javadoc.jars/${artifactId}-${version}-javadoc.jar" />
|
||||||
<j:if test="${maven.eclipse.javadoc.download}">
|
<j:if test="${maven.mode.online and maven.eclipse.javadoc.download}">
|
||||||
<eclipse:download-javadocs
|
<eclipse:download-javadocs
|
||||||
project="${pom}"
|
project="${pom}"
|
||||||
groupId="${groupId}"
|
groupId="${groupId}"
|
||||||
|
|||||||
@ -24,6 +24,7 @@
|
|||||||
</properties>
|
</properties>
|
||||||
<body>
|
<body>
|
||||||
<release version="1.12-SNAPSHOT" date="In SVN">
|
<release version="1.12-SNAPSHOT" date="In SVN">
|
||||||
|
<action dev="aheritier" type="update">Maven offline mode (-o or maven.mode.online=false) overrides maven.eclipse.src.download and maven.eclipse.javadoc.download</action>
|
||||||
<action dev="aheritier" type="add">Project preferences are now generated with the classpath (to define the java version for sources and target).</action>
|
<action dev="aheritier" type="add">Project preferences are now generated with the classpath (to define the java version for sources and target).</action>
|
||||||
<action dev="aheritier" type="update">WTP settings are now generated if maven.eclipse.wtp.enable=false. No more need to define natures, build commands.</action>
|
<action dev="aheritier" type="update">WTP settings are now generated if maven.eclipse.wtp.enable=false. No more need to define natures, build commands.</action>
|
||||||
<action dev="aheritier" type="add" issues="MPECLIPSE-127">Add basic support (jar,war) for WTP 1.5</action>
|
<action dev="aheritier" type="add" issues="MPECLIPSE-127">Add basic support (jar,war) for WTP 1.5</action>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user