广告

本站里的文章大部分经过自行整理与测试

2016年4月29日星期五

Maven 3 - pom.xml - Struts + Spring + Hibernate

以下是 Struts + Spring + Hibernate 在 pom.xml (Maven 3) 的设置

http://mvnrepository.com/artifact/org.apache.struts/struts2-core
http://mvnrepository.com/artifact/org.apache.struts/struts-core
http://mvnrepository.com/artifact/org.hibernate/hibernate-core
http://mvnrepository.com/artifact/org.springframework/spring-core
http://mvnrepository.com/artifact/org.springframework/spring-context

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.maven</groupId>
    <artifactId>ProjectName</artifactId>
    <version>0.0.1-SNAPSHOT</version>
   
    <dependencies>
      
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts-core</artifactId>
            <version>1.3.10</version>
        </dependency>
       
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts2-core</artifactId>
            <version>2.3.28.1</version>
        </dependency>
   
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
            <version>5.1.0.Final</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>${spring.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>${spring.version}</version>
        </dependency>
       
    </dependencies>

    <properties>
        <spring.version>4.2.5.RELEASE</spring.version>
    </properties>

</project>

没有评论:

发表评论