Skip to content

Commit

Permalink
Fix exclude for old maven. (#2354)
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeoneToIgnore authored Sep 8, 2017
1 parent b469704 commit 47bb672
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions flow-components-parent/demo-flow-components/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.vaadin</groupId>
Expand Down Expand Up @@ -172,7 +172,9 @@
</execution>
</executions>
<configuration>
<excludes>**/Servlet.*</excludes>
<excludes>
<exclude>**/*Servlet*</exclude>
</excludes>
</configuration>
</plugin>

Expand Down Expand Up @@ -257,11 +259,14 @@
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/jetty-extra-resources/${vaadin.frontend.path}</outputDirectory>
<outputDirectory>
${project.build.directory}/jetty-extra-resources/${vaadin.frontend.path}
</outputDirectory>
<overwrite>true</overwrite>
<resources>
<resource>
<directory>${project.basedir}/${frontend.working.directory}/build</directory>
<directory>${project.basedir}/${frontend.working.directory}/build
</directory>
</resource>
<resource>
<directory>${frontend.working.directory}</directory>
Expand Down

0 comments on commit 47bb672

Please sign in to comment.