Skip to content

Commit

Permalink
Merge pull request #1 from deegree/addExcludes
Browse files Browse the repository at this point in the history
#1105 added excludes for .zip files
  • Loading branch information
stephanr authored Jun 29, 2022
2 parents cd0f4ef + 17f538b commit 9e68b53
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.deegree</groupId>
<artifactId>deegree-ogcschemas</artifactId>
<version>20191108</version>
<version>20210817</version>
<name>deegree-ogcschemas</name>
<packaging>jar</packaging>
<description>XML schemas from http://schemas.opengeospatial.net - schemas.opengis.net is the official schema repository of the Open Geospatial Consortium</description>
Expand Down Expand Up @@ -54,7 +54,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
<version>2.0.0</version>
<version>2.0.2</version>
<executions>
<execution>
<id>download-schemas</id>
Expand All @@ -73,7 +73,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<version>3.0.0</version>
<executions>
<execution>
<id>unpack-schemas</id>
Expand All @@ -85,7 +85,13 @@
<target>
<unzip src="target/download/SCHEMAS_OPENGIS_NET.zip"
dest="target/generated-resources/META-INF/SCHEMAS_OPENGIS_NET"
overwrite="true" />
overwrite="true">
<patternset>
<exclude name="**/*.zip"/>
<include name="**/*.xsd"/>
<include name="**/*.txt"/>
</patternset>
</unzip>
</target>
</configuration>
</execution>
Expand Down

0 comments on commit 9e68b53

Please sign in to comment.