<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.ld.igds</groupId>
|
<artifactId>igds-parent-pom</artifactId>
|
<version>4.0.0-RELEASE</version>
|
<packaging>pom</packaging>
|
|
|
<!-- 定义SpringBoot版本和项目公用的JAR包 -->
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<java.version>1.8</java.version>
|
<igds.version>4.0.0-RELEASE</igds.version>
|
<spring.boot.version>1.5.9.RELEASE</spring.boot.version>
|
<spring.version>4.3.17.RELEASE</spring.version>
|
<spring.security>3.1.4.RELEASE</spring.security>
|
<mybatis.plus.version>2.2.0</mybatis.plus.version>
|
<druid.version>1.1.18</druid.version>
|
<mysql.version>5.1.25</mysql.version>
|
<sqlite.version>3.21.0</sqlite.version>
|
<fastjson.version>1.2.54</fastjson.version>
|
<lombok.version>1.18.4</lombok.version>
|
<boot.jasypt.version>1.18</boot.jasypt.version>
|
<hibernate.version>4.3.6.Final</hibernate.version>
|
</properties>
|
|
<dependencies>
|
|
<!-- SpringBoot -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
<version>${spring.boot.version}</version>
|
<exclusions>
|
<exclusion>
|
<groupId>org.hibernate</groupId>
|
<artifactId>hibernate-validator</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
<version>${spring.boot.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
<version>${spring.boot.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
<version>${spring.boot.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<version>${spring.boot.version}</version>
|
<scope>test</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
<version>${spring.boot.version}</version>
|
</dependency>
|
|
<!-- thymeleaf -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
<version>${spring.boot.version}</version>
|
</dependency>
|
|
<!-- REDIS -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
<version>${spring.boot.version}</version>
|
</dependency>
|
|
<!-- Mybatis-plus -->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>${mybatis.plus.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus</artifactId>
|
<version>${mybatis.plus.version}</version>
|
</dependency>
|
|
<!-- druid -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid-spring-boot-starter</artifactId>
|
<version>${druid.version}</version>
|
</dependency>
|
|
<!-- mysql连接 -->
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>${mysql.version}</version>
|
</dependency>
|
|
<!-- JSON -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>${fastjson.version}</version>
|
</dependency>
|
|
<!-- lombok -->
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>${lombok.version}</version>
|
</dependency>
|
|
<!-- BDF2 security-->
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-web</artifactId>
|
<version>${spring.security}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-cas</artifactId>
|
<version>${spring.security}</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>servlet-api</artifactId>
|
<groupId>javax.servlet</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-config</artifactId>
|
<version>${spring.security}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-core</artifactId>
|
<version>${spring.security}</version>
|
</dependency>
|
|
<!-- BDF2-->
|
<dependency>
|
<groupId>com.bstek.bdf2</groupId>
|
<artifactId>bdf2-orm-hibernate4</artifactId>
|
<version>2.1.0</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>servlet-api</artifactId>
|
<groupId>javax.servlet</groupId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.hibernate</groupId>
|
<artifactId>hibernate-core</artifactId>
|
</exclusion>
|
<exclusion>
|
<artifactId>slf4j-log4j12</artifactId>
|
<groupId>org.slf4j</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>log4j</artifactId>
|
<groupId>log4j</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<dependency>
|
<groupId>com.bstek.bdf2</groupId>
|
<artifactId>bdf2-core</artifactId>
|
<version>2.0.9</version>
|
<classifier>hibernate4</classifier>
|
<exclusions>
|
<exclusion>
|
<artifactId>bdf2-orm-hibernate3</artifactId>
|
<groupId>com.bstek.bdf2</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>servlet-api</artifactId>
|
<groupId>javax.servlet</groupId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.hibernate</groupId>
|
<artifactId>hibernate-core</artifactId>
|
</exclusion>
|
<exclusion>
|
<artifactId>slf4j-log4j12</artifactId>
|
<groupId>org.slf4j</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>log4j</artifactId>
|
<groupId>log4j</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<dependency>
|
<groupId>com.bstek.bdf2</groupId>
|
<artifactId>bdf2-job</artifactId>
|
<version>2.0.5</version>
|
<classifier>hibernate4</classifier>
|
<exclusions>
|
<exclusion>
|
<artifactId>bdf2-orm-hibernate3</artifactId>
|
<groupId>com.bstek.bdf2</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<dependency>
|
<groupId>com.bstek.bdf2</groupId>
|
<artifactId>bdf2-export</artifactId>
|
<version>2.0.8</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.bstek.bdf2</groupId>
|
<artifactId>bdf2-swfviewer</artifactId>
|
<version>2.0.6-SNAPSHOT</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>bdf2-orm-hibernate3</artifactId>
|
<groupId>com.bstek.bdf2</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<!-- dorado-->
|
<dependency>
|
<groupId>com.bstek.dorado</groupId>
|
<artifactId>dorado-core</artifactId>
|
<version>7.6.0.2</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>slf4j-log4j12</artifactId>
|
<groupId>org.slf4j</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>log4j</artifactId>
|
<groupId>log4j</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<dependency>
|
<groupId>com.bstek.dorado</groupId>
|
<artifactId>dorado-uploader</artifactId>
|
<version>1.0.20</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>slf4j-jcl</artifactId>
|
<groupId>org.slf4j</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>slf4j-log4j12</artifactId>
|
<groupId>org.slf4j</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>log4j</artifactId>
|
<groupId>log4j</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>slf4j-jdk14</artifactId>
|
<groupId>org.slf4j</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<!-- 其他-->
|
<dependency>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
<artifactId>jackson-core</artifactId>
|
<version>2.9.2</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
<artifactId>jackson-annotations</artifactId>
|
<version>2.9.2</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
<artifactId>jackson-databind</artifactId>
|
<version>2.9.9.2</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.hibernate</groupId>
|
<artifactId>hibernate-core</artifactId>
|
<version>${hibernate.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml-schemas</artifactId>
|
<version>3.9</version>
|
</dependency>
|
</dependencies>
|
|
<dependencyManagement>
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-framework-bom</artifactId>
|
<version>${spring.version}</version>
|
<type>pom</type>
|
<scope>import</scope>
|
</dependency>
|
</dependencies>
|
</dependencyManagement>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<version>3.0</version>
|
<configuration>
|
<source>${java.version}</source>
|
<target>${java.version}</target>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
<repositories>
|
<repository>
|
<id>sonatype</id>
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
</repository>
|
<repository>
|
<id>bsdn-maven-repository</id>
|
<url>http://nexus.bsdn.org/content/groups/public/</url>
|
</repository>
|
</repositories>
|
|
</project>
|