prestoncabe / dmn-benefit-toolbox

Scaffolding for modeling public benefits' eligibility logic with Decision Model and Notation (DMN)
2 stars 1 forks source link

Update version of Java #44

Open prestoncabe opened 1 month ago

prestoncabe commented 1 month ago

In pom.xml, what works with default Cloud Run deployment (--source option) and a simple Dockerfile is having:

    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>

Apparently, you are supposed to be able to compress this down into:

<maven.compiler.release>11</maven.compiler.release>

... but that doesn't seem to play nice with a simple Cloud Run deployment.

I'd like to explore more how this works and probably get on the latest version of Java??

(after MVP ;) )