Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-servlets/pom.xml')
-rw-r--r--jetty-servlets/pom.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/jetty-servlets/pom.xml b/jetty-servlets/pom.xml
index 291a65c2c0..6a8e12551b 100644
--- a/jetty-servlets/pom.xml
+++ b/jetty-servlets/pom.xml
@@ -9,6 +9,9 @@
<artifactId>jetty-servlets</artifactId>
<name>Jetty :: Utility Servlets and Filters</name>
<description>Utility Servlets from Jetty</description>
+ <properties>
+ <bundle-symbolic-name>${project.groupId}.servlets</bundle-symbolic-name>
+ </properties>
<build>
<plugins>
<plugin>
@@ -36,6 +39,12 @@
</archive>
</configuration>
</plugin>
+ <!-- always include the sources to be able to prepare the eclipse-jetty-SDK feature
+ with a snapshot. -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ </plugin>
</plugins>
</build>
<dependencies>

Back to the top