Author: elecharny
Date: Sat Sep 10 06:38:15 2005
New Revision: 280005
URL: http://svn.apache.org/viewcvs?rev=280005&view=rev
Log:
Desesperatly tried to correctly include images in an images directory... Those images are
in this directory,
but also in the root. <RANT>I can't find any way to avoid this behaviour with maven.
I must be a complet idiot, or
I need to have a PHD in Maven. I'm always very surprise how difficult and harsh is it to do
such simple stupid
things with maven that takes two minutes in ant...</RANT>
Modified:
directory/sandbox/trunk/proxy/project.xml
Modified: directory/sandbox/trunk/proxy/project.xml
URL: http://svn.apache.org/viewcvs/directory/sandbox/trunk/proxy/project.xml?rev=280005&r1=280004&r2=280005&view=diff
==============================================================================
--- directory/sandbox/trunk/proxy/project.xml (original)
+++ directory/sandbox/trunk/proxy/project.xml Sat Sep 10 06:38:15 2005
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project>
- <pomVersion>0.1-SNAPSHOT</pomVersion>
+ <pomVersion>1</pomVersion>
<artifactId>ldap-proxy</artifactId>
<groupId>directory-clients</groupId>
- <id>directory-asn1:null</id>
+ <id>directory-asn1</id>
<name>Ldap Proxy</name>
<package>org.apache.ldap.proxy</package>
<currentVersion>0.2-SNAPSHOT</currentVersion>
@@ -26,7 +26,7 @@
<developerConnection>https://svn.apache.org/repos/asf/directory/sandbox/trunk/${module.path}</developerConnection>
</repository>
<shortDescription>Apache Ldap Proxy</shortDescription>
- <description>This is an experimental implementation of a new LDAP ASN.1 codec</description>
+ <description>This is a Ldap Proxy GUI</description>
<mailingLists>
<mailingList>
<name>Apache Directory Developement - use [proxy] prefix</name>
@@ -155,6 +155,14 @@
<includes>
<include>LICENSE.txt</include>
<include>NOTICE.txt</include>
+ </includes>
+ <filtering>false</filtering>
+ </resource>
+ <resource>
+ <directory>${basedir}/images</directory>
+ <targetPath>images</targetPath>
+ <includes>
+ <include>images/*.gif</include>
</includes>
<filtering>false</filtering>
</resource>
|