Amir Pashazadeh
Amir Pashazadeh
I have used Interface based projection using native queries for long time, but now according to [Spring Data JPA reference documentstions](https://docs.spring.io/spring-data/jpa/reference/repositories/projections.html) record-based projections must work too, but it seems it...
Executing plugin with gradle 7.0.2 shows following error: > Some problems were found with the configuration of task ':mavenDependencyExport' (type 'MavenDependencyExport'). > - Type 'com.lazan.dependency.export.MavenDependencyExport' property 'exportJavadoc' is missing an...
execute following code: ``` void testSpecificDate2() { LocalDate localDate1 = LocalDate.of(2059, Month.MARCH, 20); LocalDate localDate2 = LocalDate.of(2059, Month.MARCH, 21); PersianDate persianDate1 = PersianDate.from(localDate1); System.out.println(persianDate1); System.out.println(persianDate1.toGregorian()); PersianDate persianDate2 = PersianDate.from(localDate2); System.out.println(persianDate2);...