I am trying to do a poc on using apache ignite as hibernate 2nd level cache, following the example given https://apacheignite-mix.readme.io/v2.1/docs/hibernate-l2-cache#maven-configuration.
Since we are using Hibernate 5.3.7 in Spring Boot, I need to use ignite-hibernate_5.3. Unfortunately this artifact id is not present in any public maven repository, hence as mentioned https://apacheignite.readme.io/docs/maven-setup# i need to build it locally and push it to my maven repository. When I am trying to build using the command mvn clean install -DskipTests -Plgpl -pl modules/hibernate -am I am getting the error The following artifacts could not be resolved: org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018, org.jacorb:jacorb-idl:jar:2.2.3-jonas-patch-20071018 I am not seeing any reference to the org.jacorb:jacorb , org.jacorb:jacorb-idl in any pom nor is it available in any public repository. This is happening for both 2.8.1 tag and also current SNAPSHOT What should be done to fix it, or is there some public repository where is can get ignite-hibernate_5.3?
