Skip to content

Commit

Permalink
fix: exclude Groovy scripts from INSPIRE schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
stempler committed Feb 22, 2024
1 parent 6a5d4a0 commit 097212e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,13 @@ class INSPIREDownloadTask extends DefaultTask {

project.copy {
// Exclude Zip files, 'governance' folder, and 'readme.md' file
exclude('**/*.zip', 'application-schemas-main/governance-release-process/**', 'application-schemas-main/README.md', 'application-schemas-main/.github/**')
exclude(
'**/*.zip',
'application-schemas-main/governance-release-process/**',
'application-schemas-main/README.md',
'application-schemas-main/.github/**',
'**/*.groovy' // Groovy scripts used for validation
)

from project.zipTree(tmpSchemas)
into temporaryDir
Expand Down

0 comments on commit 097212e

Please sign in to comment.