-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #340 from ctrimble/feature_recursive-include-patterns
Corrected Exclude Pattern Behavior with Maven.
- Loading branch information
Showing
13 changed files
with
203 additions
and
4 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
10 changes: 10 additions & 0 deletions
10
jsonschema2pojo-integration-tests/src/test/resources/schema/filtering/.svn/svn.json
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,10 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "a location on s3", | ||
"type": "object", | ||
"properties": { | ||
"prop": { | ||
"type": "string" | ||
} | ||
} | ||
} |
11 changes: 10 additions & 1 deletion
11
jsonschema2pojo-integration-tests/src/test/resources/schema/filtering/excluded.json
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 |
---|---|---|
@@ -1 +1,10 @@ | ||
an invalid schema file that should not be included. | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "a schema that should be exluded.", | ||
"type": "object", | ||
"properties": { | ||
"prop": { | ||
"type": "string" | ||
} | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
jsonschema2pojo-integration-tests/src/test/resources/schema/filtering/sub/.svn/sub.json
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,10 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "a generic sub document", | ||
"type": "object", | ||
"properties": { | ||
"prop": { | ||
"type": "string" | ||
} | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
jsonschema2pojo-integration-tests/src/test/resources/schema/filtering/sub/sub.json
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,10 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "a generic sub document", | ||
"type": "object", | ||
"properties": { | ||
"prop": { | ||
"type": "string" | ||
} | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
jsonschema2pojo-integration-tests/src/test/resources/schema/filtering/sub/sub2/.svn/sub.json
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,10 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "a generic sub document", | ||
"type": "object", | ||
"properties": { | ||
"prop": { | ||
"type": "string" | ||
} | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
jsonschema2pojo-integration-tests/src/test/resources/schema/filtering/sub/sub2/sub.json
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,10 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "a generic sub document", | ||
"type": "object", | ||
"properties": { | ||
"prop": { | ||
"type": "string" | ||
} | ||
} | ||
} |
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
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
9 changes: 9 additions & 0 deletions
9
jsonschema2pojo-maven-plugin/src/test/resources/filtered/schema/.svn/sub/sub-svn-file.json
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,9 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"type": "object", | ||
"properties": { | ||
"prop": { | ||
"type": "string" | ||
} | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
jsonschema2pojo-maven-plugin/src/test/resources/filtered/schema/.svn/svn-file.json
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,9 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"type": "object", | ||
"properties": { | ||
"subProp": { | ||
"$ref": "sub/sub-svn-file.json" | ||
} | ||
} | ||
} |