Radek Felcman
Radek Felcman
What messages You get in the log output?
Sorry but message `[java] Caused by: java.lang.UnsupportedClassVersionError: org/eclipse/tycho/p2maven/repository/P2ArtifactRepositoryLayout has been compiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime...
2.7.14 is compatible with JAVA 8 as compiler target is Java 8, but for a build and due some tests dependencies and minimal Tycho version is JDK11+ needed. There was...
-- Thank you for input so there is no way to compile it with JDK 8 ? Sorry but no. There is pressure to use JDK 21 for a build...
1. For functional changes like this we expect some test. Please check and maybe extend with new test method [`jpa/eclipselink.jpa.test/src/org/eclipse/persistence/testing/tests/jpa/beanvalidation/BeanValidationJunitTest.java`](https://github.com/eclipse-ee4j/eclipselink/blob/master/jpa/eclipselink.jpa.testapps/jpa.test.weaving/src/test/java/org/eclipse/persistence/testing/tests/jpa/weaving/WeavingTest.java) 2. Please ensure, that copyright year in the modified files...
Sorry but I don't understand this issue. In XML binding file is `Bar` class not specified -> how MOXy should know that `ALPHABETICAL` access order is wanted there. It's applied...
Fix into 4.0 is #2310 . I'm closing it.
Sorry but there is not direct replacement for this internal class. This deprecated code was removed by #761 . I think, that nearest classes are https://github.com/eclipse-ee4j/eclipselink/blob/3.0/foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/internal/jpa/parsing/NodeFactory.java https://github.com/eclipse-ee4j/eclipselink/blob/3.0/foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/internal/jpa/parsing/NodeFactoryImpl.java BUT all mentioned...
I think, that issue is in `TestObjectConverter`. I think, that better implementation is: ``` @Converter public class TestObjectConverter implements AttributeConverter { @Override public String convertToDatabaseColumn(char[] argNormal) { return argNormal !=...
Yes `char[]` is supported in JPA, but I'm speaking about data type fetched from DB by JDBC. So You mentioned `Reader` and `Writer` and which data type is declared in...