Use "fake" jar to get deps for jetty-jsp to work with other modules that use it and need to unpack its dependencies.

This commit is contained in:
Jan Bartel 2012-02-01 19:17:42 +11:00
parent e26cb28760
commit b7b56bc0f2
2 changed files with 7 additions and 3 deletions

View File

@ -7,11 +7,11 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>jetty-jsp</artifactId>
<name>Jetty :: JSP dependencies</name>
<packaging>pom</packaging>
<packaging>jar</packaging>
<build>
</build>
<dependencies>
<dependencies>
<!-- jstl -->
<dependency>
<groupId>org.eclipse.jetty.orbit</groupId>
@ -46,6 +46,6 @@
<artifactId>org.eclipse.jdt.core</artifactId>
<version>3.7.1</version>
</dependency>
</dependencies>
</dependencies>
</project>

View File

@ -0,0 +1,4 @@
This jar file is purely to work around a problem with the Maven Dependency plugin.
Several modules in jetty use the Dependency plugin to copy or unpack the dependencies of other modules.
However, the Dependency plugin is not capable of unpacking or copying a dependency of type 'pom', which
this module is, as it consists purely of external dependencies needed to run jsp.