-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
o Change the semantics of file filtering so that when there are regex…
…es specified, it doesn't include the property regexes.
- Loading branch information
Showing
9 changed files
with
68 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 0 additions & 7 deletions
7
unix-maven-plugin/src/it/test-zip-1/src/main/unix/files/opt/hudson/etc/app.conf
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
unix-maven-plugin/src/it/test-zip-1/src/main/unix/files/opt/hudson/etc/config.properties
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
unix-maven-plugin/src/it/test-zip-1/src/main/unix/files/opt/hudson/etc/filter-1.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Property specified in the project | ||
my-property=${my-property} | ||
|
||
# Property specified on the command line with -D | ||
my-user-property=${my-user-property} | ||
|
||
# System property. This is the most constant system property I could find. | ||
java.class.version=${java.class.version} |
4 changes: 4 additions & 0 deletions
4
unix-maven-plugin/src/it/test-zip-1/src/main/unix/files/opt/hudson/etc/filter-2.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
simple-regex=MY_PLACEHOLDER | ||
|
||
# This should not be expanded | ||
project.version=${project.version} |
3 changes: 3 additions & 0 deletions
3
unix-maven-plugin/src/it/test-zip-1/src/main/unix/files/opt/hudson/etc/filter-all.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# This file is included in all <filterFiles> | ||
# The ${double-test} will be expanded from the <property> in the pom, and again with a regex | ||
double-test=${double-test} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters