-
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.
[issue 89] add classpath/classpathRef options to ant task
- Loading branch information
1 parent
62da917
commit 4d2d091
Showing
9 changed files
with
191 additions
and
12 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
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
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
15 changes: 15 additions & 0 deletions
15
jsonschema2pojo-integration-tests/src/test/resources/ant/example.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,15 @@ | ||
{ | ||
"type" : "object", | ||
"javaType" : "com.example.WordDelimit", | ||
"properties" : { | ||
"property_with_underscores" : { | ||
"type" : "string" | ||
}, | ||
"property-with-hyphens" : { | ||
"type" : "string" | ||
}, | ||
"property_with mixed-delimiters" : { | ||
"type" : "string" | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
jsonschema2pojo-integration-tests/src/test/resources/ant/exampleWithExtraClasspath.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,19 @@ | ||
{ | ||
"type" : "object", | ||
"javaType" : "com.example.WordDelimit", | ||
"properties" : { | ||
"property_with_underscores" : { | ||
"type" : "string" | ||
}, | ||
"property-with-hyphens" : { | ||
"type" : "string" | ||
}, | ||
"property_with mixed-delimiters" : { | ||
"type" : "string" | ||
}, | ||
"property-refer-custom-classpath" : { | ||
"type" : "object", | ||
"javaType" : "clojure.lang.Var" | ||
} | ||
} | ||
} |