PR: MPIDEA-25

use relative paths


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@189919 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
brett
2005-06-10 07:55:23 +00:00
parent 25ed92b93e
commit f06309ebe9
5 changed files with 6 additions and 5 deletions

View File

@@ -29,7 +29,7 @@
<j:set var="IDEA_TYPE" value="J2EE_WEB_MODULE"/>
</j:if>
<module version="4" relativePaths="false" type="${IDEA_TYPE}">
<module version="4" relativePaths="true" type="${IDEA_TYPE}">
<j:if test="${type == 'ejb'}">
<component name="EjbModuleBuildComponent">
<setting name="EXPLODED_URL" value="file://" />

View File

@@ -19,7 +19,7 @@
<j:whitespace xmlns:j="jelly:core" xmlns:maven="jelly:maven" xmlns="dummy" trim="true">
<project version="4" relativePaths="false">
<project version="4" relativePaths="true">
<maven:get plugin="maven-java-plugin" property="maven.compile.source" var="jdkLevel" />
<j:if test="${empty(jdkLevel)}">
<j:set var="jdkLevel" value="${java.specification.version}" />

View File

@@ -19,7 +19,7 @@
<j:whitespace xmlns:j="jelly:core" xmlns:maven="jelly:maven" xmlns="dummy" trim="true">
<project version="4" relativePaths="false">
<project version="4" relativePaths="true">
<maven:get plugin="maven-java-plugin" property="maven.compile.source" var="jdkLevel" />
<j:if test="${empty(jdkLevel)}">
<j:set var="jdkLevel" value="${java.specification.version}" />

View File

@@ -19,7 +19,7 @@
<j:whitespace xmlns:j="jelly:core" xmlns:u="jelly:util" xmlns="dummy" trim="true">
<project version="4" relativePaths="false">
<project version="4" relativePaths="true">
<component name="LvcsProjectConfiguration">
<option name="ADD_LABEL_ON_PROJECT_OPEN" value="true" />
<option name="ADD_LABEL_ON_PROJECT_COMPILATION" value="true" />
@@ -317,4 +317,4 @@
<option name="CHECKIN_DIALOG_SPLITTER_PROPORTION" value="0.8" />
</component>
</project>
</j:whitespace>
</j:whitespace>

View File

@@ -25,6 +25,7 @@
</properties>
<body>
<release version="1.6-SNAPSHOT" date="in SVN">
<action dev="brett" type="update" issue="MPIDEA-25">Use relative paths for projects and modules for projects easier to check into SCM</action>
<action dev="brett" type="update" issue="MPIDEA-7" due-to="David Jencks">Make projects within the reactor set IDEA module dependencies, but keep all others as JAR dependencies</action>
<action dev="brett" type="add" issue="MPIDEA-10" due-to="David Jencks">Add a property for specifying generated source directories to include in the module</action>
<action dev="brett" type="update" issue="MPIDEA-19">Set source level properties based on the compile source level</action>