quarkiverse / quarkus-jnosql

The Quarkus JNoSql Extension adds support for JNoSQL, an implementation of Jakarta NoSQL.
http://www.jnosql.org/
Apache License 2.0
13 stars 4 forks source link

annotation processor #96

Closed amoscatelli closed 5 months ago

amoscatelli commented 5 months ago

95

amoscatelli commented 5 months ago

@otaviojava LGTM now

Can I ask to verify why I can see all those warnings ?

Warning:  No SupportedSourceVersion annotation found on org.eclipse.jnosql.lite.mapping.EntityProcessor, returning RELEASE_6.
Warning:  Supported source version 'RELEASE_6' from annotation processor 'org.eclipse.jnosql.lite.mapping.EntityProcessor' less than -source '17'
Warning:  No SupportedSourceVersion annotation found on org.eclipse.jnosql.lite.mapping.repository.RepositoryProcessor, returning RELEASE_6.
Warning:  Supported source version 'RELEASE_6' from annotation processor 'org.eclipse.jnosql.lite.mapping.repository.RepositoryProcessor' less than -source '17'
amoscatelli commented 5 months ago

Based on what I see the lite processor should add a SupportedSourceVersion annotation to specify the java version used

otaviojava commented 5 months ago

@otaviojava LGTM now

Can I ask to verify why I can see all those warnings ?

Warning:  No SupportedSourceVersion annotation found on org.eclipse.jnosql.lite.mapping.EntityProcessor, returning RELEASE_6.
Warning:  Supported source version 'RELEASE_6' from annotation processor 'org.eclipse.jnosql.lite.mapping.EntityProcessor' less than -source '17'
Warning:  No SupportedSourceVersion annotation found on org.eclipse.jnosql.lite.mapping.repository.RepositoryProcessor, returning RELEASE_6.
Warning:  Supported source version 'RELEASE_6' from annotation processor 'org.eclipse.jnosql.lite.mapping.repository.RepositoryProcessor' less than -source '17'

This is a warning that we need to fix at the jnosql-lite. We did not define the minimum to generate the source code.

amoscatelli commented 5 months ago

@otaviojava LGTM now Can I ask to verify why I can see all those warnings ?

Warning:  No SupportedSourceVersion annotation found on org.eclipse.jnosql.lite.mapping.EntityProcessor, returning RELEASE_6.
Warning:  Supported source version 'RELEASE_6' from annotation processor 'org.eclipse.jnosql.lite.mapping.EntityProcessor' less than -source '17'
Warning:  No SupportedSourceVersion annotation found on org.eclipse.jnosql.lite.mapping.repository.RepositoryProcessor, returning RELEASE_6.
Warning:  Supported source version 'RELEASE_6' from annotation processor 'org.eclipse.jnosql.lite.mapping.repository.RepositoryProcessor' less than -source '17'

This is a warning that we need to fix at the jnosql-lite. We did not define the minimum to generate the source code.

Yea please fix it

Thank you