I have a Hibernate running in my project and I am trying to set it up to be switchable to EclipseLink. I have added all EclipseLink classes in Maven, but it seems that they are not running at all. When I try to run the project, it ends up with:
Exception in thread "main" javax.persistence.PersistenceException:
No Persistence provider for EntityManager named test
My persistence.xml file: https://gist.github.com/1676280
The pom.xml file with the dependencies: https://gist.github.com/1676282
Once I switch the providers in the persistence.xml back to Hibernate, everything works correctly.