You are viewing a plain text version of this content. The canonical link for it is here.
Posted to photark-commits@incubator.apache.org by lr...@apache.org on 2009/09/13 22:51:13 UTC

svn commit: r814422 - /incubator/photark/trunk/pom.xml

Author: lresende
Date: Sun Sep 13 22:51:12 2009
New Revision: 814422

URL: http://svn.apache.org/viewvc?rev=814422&view=rev
Log:
Minor update to simplify how resources are handled and place license/notice resources directly in root fo jar

Modified:
    incubator/photark/trunk/pom.xml

Modified: incubator/photark/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/photark/trunk/pom.xml?rev=814422&r1=814421&r2=814422&view=diff
==============================================================================
--- incubator/photark/trunk/pom.xml (original)
+++ incubator/photark/trunk/pom.xml Sun Sep 13 22:51:12 2009
@@ -84,7 +84,6 @@
     </prerequisites>
 
     <properties>
-        <notice.dir>.</notice.dir>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
      </properties>
@@ -224,12 +223,13 @@
                 <directory>src/main/resources</directory>
             </resource>
             <resource>
-                <directory>${notice.dir}</directory>
-                <targetPath>META-INF</targetPath>
-                <filtering>true</filtering>
+                <directory>${basedir}</directory>
                 <includes>
                     <include>LICENSE</include>
                     <include>NOTICE</include>
+                    <include>README</include>
+                    <include>META-INF/**/*</include>
+                    <include>OSGI-INF/**/*</include>
                 </includes>
             </resource>
         </resources>