Playframework plugin needs to have both scala and java version. Artifact for scala will have scala number appended - standard in scala community, so they can be both uploaded to maven repo.
currently playframework plugin depends on "javaCore". If you have scala playframework app and want playorm you need to add javaCore to work. While adding one more dependency is not a problem. There seems to be runtime check in template generator if javaCore is included because it generates templates with different API.
java uses play.data.* while scala play.data.api.*; they might be other differences in generated templates as well.
Plugin seems to be very small, so adding few scala lines to make scala version would not be problem. Alternative solution is to make playframework work without need to add javaCore.
Playframework plugin needs to have both scala and java version. Artifact for scala will have scala number appended - standard in scala community, so they can be both uploaded to maven repo.
currently playframework plugin depends on "javaCore". If you have scala playframework app and want playorm you need to add javaCore to work. While adding one more dependency is not a problem. There seems to be runtime check in template generator if javaCore is included because it generates templates with different API.
java uses play.data.* while scala play.data.api.*; they might be other differences in generated templates as well.
Plugin seems to be very small, so adding few scala lines to make scala version would not be problem. Alternative solution is to make playframework work without need to add javaCore.