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:
parent
e26cb28760
commit
b7b56bc0f2
|
@ -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>
|
||||
|
|
|
@ -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.
|
Loading…
Reference in New Issue