Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugues Malphettes2010-03-03 19:56:10 +0000
committerHugues Malphettes2010-03-03 19:56:10 +0000
commit5421248333ffd4e31a3570fea3d8c10a7100fa38 (patch)
treea8df21260a705eb44fd9ff43cfdfe4bd48848c63 /jetty-osgi/jetty-osgi-httpservice/pom.xml
parent5dc2947b8a43c86a7aebf950baa75a66620528cf (diff)
downloadorg.eclipse.jetty.project-5421248333ffd4e31a3570fea3d8c10a7100fa38.tar.gz
org.eclipse.jetty.project-5421248333ffd4e31a3570fea3d8c10a7100fa38.tar.xz
org.eclipse.jetty.project-5421248333ffd4e31a3570fea3d8c10a7100fa38.zip
imortant fix: resources necessary were not packaged with the build
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1335 7e9141cc-0065-0410-87d8-b60c137991c4
Diffstat (limited to 'jetty-osgi/jetty-osgi-httpservice/pom.xml')
-rw-r--r--jetty-osgi/jetty-osgi-httpservice/pom.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/jetty-osgi/jetty-osgi-httpservice/pom.xml b/jetty-osgi/jetty-osgi-httpservice/pom.xml
index a00517179e..55e27c00e1 100644
--- a/jetty-osgi/jetty-osgi-httpservice/pom.xml
+++ b/jetty-osgi/jetty-osgi-httpservice/pom.xml
@@ -26,6 +26,19 @@
</dependencies>
<build>
+ <!-- resources>
+ <resource>
+ <directory>META-INF/..</directory>
+ <excludes>
+ <exclude>**/.*</exclude>
+ </excludes>
+ <includes>
+ <include>contexts</include>
+ </includes>
+ </resource>
+ </resources -->
+
+
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
@@ -37,6 +50,9 @@
<replace file="target/classes/META-INF/MANIFEST.MF"
token="Bundle-Version: 7.0.2.qualifier"
value="Bundle-Version: ${parsedVersion.osgiVersion}"/>
+ <copy todir="target/classes/contexts">
+ <fileset dir="contexts"/>
+ </copy>
</tasks>
</configuration>
<goals>

Back to the top