|
@ -0,0 +1,105 @@
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
<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.yihu.hos</groupId>
|
|
|
<artifactId>esb</artifactId>
|
|
|
<version>1.1.1-SNAPSHOT</version>
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
<name>esb</name>
|
|
|
<description>ESB管理平台</description>
|
|
|
<parent>
|
|
|
<groupId>com.yihu.hos</groupId>
|
|
|
<artifactId>hos-web-framework-dependencies</artifactId>
|
|
|
<version>1.1.1-SNAPSHOT</version>
|
|
|
<relativePath>/hos-web-framework-dependencies</relativePath> <!-- lookup parent from repository -->
|
|
|
</parent>
|
|
|
|
|
|
<properties>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
<java.version>1.8</java.version>
|
|
|
<org.apache.tiles-version>3.0.5</org.apache.tiles-version>
|
|
|
<!--<main.basedir>${basedir}/../..</main.basedir>-->
|
|
|
<!--<m2eclipse.wtp.contextRoot>/</m2eclipse.wtp.contextRoot>-->
|
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>org.springframework.boot</groupId>-->
|
|
|
<!--<artifactId>spring-boot-starter-tomcat</artifactId>-->
|
|
|
<!--<scope>provided</scope>-->
|
|
|
<!--</dependency>-->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
<artifactId>tomcat-embed-jasper</artifactId>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
<!--jxl导出工具-->
|
|
|
<dependency>
|
|
|
<groupId>net.sourceforge.jexcelapi</groupId>
|
|
|
<artifactId>jxl</artifactId>
|
|
|
<version>2.6.10</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
<artifactId>jstl</artifactId>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.hos</groupId>
|
|
|
<artifactId>hos-web-framework</artifactId>
|
|
|
<version>1.1.1-SNAPSHOT</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework</groupId>
|
|
|
<artifactId>spring-orm</artifactId>
|
|
|
<version>${spring.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--=============tilesJSP布局框架 start =============-->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.tiles</groupId>
|
|
|
<artifactId>tiles-extras</artifactId>
|
|
|
<version>3.0.5</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
<artifactId>guava</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.tiles</groupId>
|
|
|
<artifactId>tiles-jsp</artifactId>
|
|
|
<version>${org.apache.tiles-version}</version>
|
|
|
</dependency>
|
|
|
<!--=============tiles end =============-->
|
|
|
|
|
|
<!--========== hibernate start=======-->
|
|
|
|
|
|
<!--========== hibernate end=========-->
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|
|
|
</project>
|