{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Car",
"description": "Car",
"type": "object",
"vin":"12345"
"properties": {
"topSpeed": {
"type": "string",
"required": false
}
}
}@vin("12345")
public class Car { ..}--
You received this message because you are subscribed to the Google Groups "jsonschema2pojo-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jsonschema2pojo-...@googlegroups.com.
Visit this group at http://groups.google.com/group/jsonschema2pojo-users.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to jsonschema2pojo-users+unsub...@googlegroups.com.
Visit this group at http://groups.google.com/group/jsonschema2pojo-users.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to jsonschema2pojo-...@googlegroups.com.
You received this message because you are subscribed to a topic in the Google Groups "jsonschema2pojo-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/jsonschema2pojo-users/hRiwd7PZ--k/unsubscribe.
To unsubscribe from this group and all its topics, send an email to jsonschema2pojo-...@googlegroups.com.
Visit this group at http://groups.google.com/group/jsonschema2pojo-users.
For more options, visit https://groups.google.com/d/optout.
Daniel Chaffee
Sr. Software Architect, NG7
Yes exactly, I was expecting that someone would just add their extra jar to the classpath. I completely agree, your workaround of adding your class to the existing core jar is definitely not ideal.
I mentioned the package name as it stuck out as a little odd to me and I wondered if this might have been a mistake.
I'll have a play with this myself and see if I can understand what might be going wrong. Are the Maven or Gradle plugins an option for you? Modifying the classpath is a bit easier there, for obvious reasons.
Cheers