Chuck May

Results 31 comments of Chuck May

I'm not sure it is working. I am using Gradle, so I believe this is the way to specify a classifier. ```groovy api 'dev.morphia.morphia:morphia-core:2.2.0-SNAPSHOT:annotations' ``` However when I look at...

Looks like this class is the issue. It is including a class outside the annotations package. ```java package dev.morphia.annotations; import dev.morphia.utils.IndexDirection; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import...

I am not using Maven. I am using Gradle. I posted the dependency tree above from `gradle dependencies`.

No problem. Let me know if there is anything I can do to help.

I guess I don't totally understand. If I say that Morphia is a provided dependency, then a user of the library, which doesn't want or care about MongoDB, would need...

Actually, now that I think more about it, even Mixin annotations wouldn't totally work. For example, here is one of the entities in the library. https://github.com/imsweb/staging-client-java/blob/master/src/main/java/com/imsweb/staging/entities/StagingSchema.java One of the fields...

That sounds good. Definitely no rush and I don't want to add any more work to your plate. I've been thinking this morning about some things and I am going...

1.6 -> 2.x was a big change for me. It took a while to convert and test. Fingers crossed not too much changes in 2.3!

As a frame of reference, here is what `grade_clin` looks like now. Not that we do support `start` and `end` years for `metadata` entities. ```json { "key": "grade_clin", "name": "Grade...

The good thing about this solution is that it would only require a single change to the JSON structure. I would add `getTable()` to the `Metadata` interface. Metadata is not...