Java 10与JPA的Maven依赖关系(eclipse链接和hibernate)

Java 10与JPA的Maven依赖关系(eclipse链接和hibernate),maven,jpa,dependencies,Maven,Jpa,Dependencies,当使用Java 10并需要创建JPA项目时,以下选项的POM中将包含哪些依赖项: eclipse链接 Hibernatejava 10的Eclipse链接: <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version>

当使用Java 10并需要创建JPA项目时,以下选项的POM中将包含哪些依赖项: eclipse链接
Hibernate

java 10的Eclipse链接:

    <plugins>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.7.0</version>
            <configuration>
              <release>10</release>
            </configuration>
          </plugin>
        </plugins>
      </build>
      <dependencies>
        <!-- https://mvnrepository.com/artifact/org.eclipse.persistence/org.eclipse.persistence.jpa -->
        <dependency>
        <groupId>org.eclipse.persistence</groupId>
        <artifactId>org.eclipse.persistence.jpa</artifactId>
        <version>2.7.2-RC2</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
        <dependency>
        <groupId>com.microsoft.sqlserver</groupId>
        <artifactId>mssql-jdbc</artifactId>
        <version>6.5.3.jre10-preview</version>
        <scope>test</scope>
        </dependency>
      </dependencies>

maven编译器插件
3.7.0
10
org.eclipse.persistence
org.eclipse.persistence.jpa
2.7.2-RC2
com.microsoft.sqlserver
mssql jdbc
6.5.3.jre10-预览
测试
休眠:

<dependencies>
        <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-entitymanager -->
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-entitymanager</artifactId>
            <version>5.2.2.Final</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>4.0.1</version>
            <scope>provided</scope>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple -->
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-simple</artifactId>
            <version>1.7.25</version>
            <scope>test</scope>
        </dependency>
        <!-- https://mvnrepository.com/artifact/javax.xml/jaxb-api -->
        <dependency>
            <groupId>javax.xml.bind</groupId>
            <artifactId>jaxb-api</artifactId>
            <version>2.1</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/antlr/antlr -->
        <dependency>
            <groupId>antlr</groupId>
            <artifactId>antlr</artifactId>
            <version>2.7.7</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/javax.enterprise/cdi-api -->
        <dependency>
            <groupId>javax.enterprise</groupId>
            <artifactId>cdi-api</artifactId>
            <version>1.1</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>

org.hibernate
休眠实体管理器
5.2.2.最终版本
javax.servlet
javax.servlet-api
4.0.1
假如
org.slf4j
slf4j简单
1.7.25
测试
javax.xml.bind
jaxb api
2.1
antlr
antlr
2.7.7
javax.enterprise
CDIAPI
1.1
假如