Issue #5264 - Fixing jetty-maven-plugin exclusions for demos

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Joakim Erdfelt 2020-09-23 15:29:25 -05:00
parent d4556e476f
commit f7cf41109b
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
1 changed files with 12 additions and 12 deletions

View File

@ -259,28 +259,28 @@
<type>zip</type> <type>zip</type>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.eclipse.jetty</groupId> <groupId>org.eclipse.jetty.demos</groupId>
<artifactId>test-jetty-webapp</artifactId> <artifactId>demo-jetty-webapp</artifactId>
</exclusion> </exclusion>
<exclusion> <exclusion>
<groupId>org.eclipse.jetty.tests</groupId> <groupId>org.eclipse.jetty.demos</groupId>
<artifactId>test-jndi-webapp</artifactId> <artifactId>demo-jndi-webapp</artifactId>
</exclusion> </exclusion>
<exclusion> <exclusion>
<groupId>org.eclipse.jetty.tests</groupId> <groupId>org.eclipse.jetty.demos</groupId>
<artifactId>test-jaas-webapp</artifactId> <artifactId>demo-jaas-webapp</artifactId>
</exclusion> </exclusion>
<exclusion> <exclusion>
<groupId>org.eclipse.jetty.tests</groupId> <groupId>org.eclipse.jetty.demos</groupId>
<artifactId>test-spec-webapp</artifactId> <artifactId>demo-spec-webapp</artifactId>
</exclusion> </exclusion>
<exclusion> <exclusion>
<groupId>org.eclipse.jetty.tests</groupId> <groupId>org.eclipse.jetty.demos</groupId>
<artifactId>test-proxy-webapp</artifactId> <artifactId>demo-proxy-webapp</artifactId>
</exclusion> </exclusion>
<exclusion> <exclusion>
<groupId>org.eclipse.jetty.examples</groupId> <groupId>org.eclipse.jetty.demos</groupId>
<artifactId>example-async-rest-webapp</artifactId> <artifactId>demo-async-rest-webapp</artifactId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>