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