FELIX-2238 create a src/main/compat folder to place the resources kept for backwards compatibility. This will take the icons once removed in Rev. 922641 and the admin_compat.css file created in Rev. 922227

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@927780 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole/pom.xml b/webconsole/pom.xml
index d1886d9..ccbe930 100644
--- a/webconsole/pom.xml
+++ b/webconsole/pom.xml
@@ -44,6 +44,24 @@
     </scm>
 
     <build>
+        <resources>
+            <!-- default resources (may be removed when compat is removed) -->
+            <resource>
+                <directory>${basedir}/src/main/resources</directory>
+            </resource>
+            <resource>
+                <targetPath>META-INF</targetPath>
+                <directory>${basedir}</directory>
+                <includes>
+                    <include>LICENSE*</include>
+                    <include>NOTICE*</include>
+                </includes>
+            </resource>
+            <!-- CSS and images for backwards compatibility -->
+            <resource>
+                <directory>${basedir}/src/main/compat</directory>
+            </resource>
+        </resources>
         <plugins>
             <!-- translate UTF-8 encoded properties files to ISO-8859-1 -->
             <plugin>