> + <optional>true</optional> > + </dependency> > + <dependency> > + <groupId>com.google.auto.value</groupId> > + <artifactId>auto-value</artifactId> > + <version>1.0</version> > + </dependency> > + <dependency> > + <groupId>com.google.inject.extensions</groupId> > + <artifactId>guice-persist</artifactId> > + <version>4.0</version> > + </dependency> > + <dependency> > + <groupId>org.hibernate.javax.persistence</groupId> > + <artifactId>hibernate-jpa-2.1-api</artifactId> > + <version>1.0.0.Final</version>
The 2.1 javax.persistence api is part of Java EE. It is available as a standalone package but the last version is 1.0.2. Hibernate and other providers offer a 2.1 api and the implementation as two different packages. I added the hibernate jpa api as a dependency, The entity manager (the implementation) is test scoped. Thoughts? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/173/files#r29954669
