Remove jar resources set as per MAVEN-812

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114007 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dion
2003-09-14 14:51:33 +00:00
parent b6c85147f2
commit 94518d33f5
3 changed files with 0 additions and 43 deletions

View File

@@ -79,23 +79,6 @@
Defaults to the base directory of the project.
</td>
</tr>
<tr>
<td>maven.jar.resources.set</td>
<td>Yes</td>
<td>
This is the Ant <code>patternset</code> of all the <code>include</code>s and
<code>exclude</code>s from the
<source><![CDATA[
<build>
<resources>
</resources>
</build>
]]></source>
section of your
<a href="http://maven.apache.org/reference/project-descriptor.html">
project descriptor</a>
</td>
</tr>
</table>
</section>
<section name="Deploy Settings">

View File

@@ -6,27 +6,6 @@
xmlns:define="jelly:define"
xmlns:maven="jelly:maven">
<j:choose>
<j:when test="${!pom.build.resources.includes.isEmpty()}">
<ant:property name="maven.has.jar.resource.patterns" value="true"/>
</j:when>
<j:when test="${!pom.build.resources.excludes.isEmpty()}">
<ant:property name="maven.has.jar.resource.patterns" value="true"/>
</j:when>
<j:otherwise>
<ant:property name="maven.has.jar.resource.patterns" value="false"/>
</j:otherwise>
</j:choose>
<ant:patternset id="maven.jar.resources.set">
<j:forEach var="res" items="${pom.build.resources.includes}">
<ant:include name="${res}"/>
</j:forEach>
<j:forEach var="res" items="${pom.build.resources.excludes}">
<ant:exclude name="${res}"/>
</j:forEach>
</ant:patternset>
<!-- ================================================================== -->
<!-- P R E P A R E F I L E S Y S T E M -->
<!-- ================================================================== -->

View File

@@ -40,11 +40,6 @@
<a href="properties.html">maven.jarResources.basedir</a> to the
build directory, where class files are stored.
</p>
<p>
The <a href="properties.html">maven.jar.resources.set</a>
property is used to determine which files from the base directory
are included
</p>
</td>
</tr>
<tr>