forked from github/dataease
149 lines
5.1 KiB
XML
149 lines
5.1 KiB
XML
<?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>io.dataease</groupId>
|
|
<artifactId>dataease</artifactId>
|
|
<version>1.0.0</version>
|
|
<modules>
|
|
<module>dataease-commons</module>
|
|
<module>dataease-server</module>
|
|
</modules>
|
|
<packaging>pom</packaging>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.4.2</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<thymeleaf-extras-shiro.version>2.0.0</thymeleaf-extras-shiro.version>
|
|
<shiro.version>1.4.0</shiro.version>
|
|
<jwt.version>3.12.1</jwt.version>
|
|
<mybatis-starter.version>2.1.3</mybatis-starter.version>
|
|
<mybatis-plus.version>3.4.1</mybatis-plus.version>
|
|
<mybatis-generator.version>1.3.7</mybatis-generator.version>
|
|
<pagehelper.version>1.3.0</pagehelper.version>
|
|
<flyway.version>7.5.2</flyway.version>
|
|
<druid.version>1.2.4</druid.version>
|
|
<ehcache.version>2.6.9</ehcache.version>
|
|
<springfox-swagger2.version>2.9.0</springfox-swagger2.version>
|
|
<knife4j.version>2.0.5</knife4j.version>
|
|
<java.version>1.8</java.version>
|
|
|
|
|
|
<hutool.version>5.5.8</hutool.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>${hutool.version}</version>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.12.4</version>
|
|
<configuration>
|
|
<skipTests>true</skipTests>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>3.0.0</version>
|
|
<configuration>
|
|
<attach>true</attach>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>jcenter-snapshots</id>
|
|
<name>jcenter</name>
|
|
<url>https://jcenter.bintray.com/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>releases</id>
|
|
<name>Nexus Release Repository</name>
|
|
<url>http://repository.fit2cloud.com/content/repositories/releases/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>fit2cloud-enterprise-release</id>
|
|
<name>Fit2Cloud Enterprise Release</name>
|
|
<url>http://repository.fit2cloud.com/content/repositories/fit2cloud-enterprise-release/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>fit2cloud</id>
|
|
<name>fit2cloud</name>
|
|
<url>http://repository.fit2cloud.com/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>fit2cloud-public</id>
|
|
<name>fit2cloud-public</name>
|
|
<url>http://repository.fit2cloud.com/content/repositories/fit2cloud-public</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>releases</id>
|
|
<name>Nexus Release Repository</name>
|
|
<url>http://repository.fit2cloud.com/content/repositories/releases/</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>snapshots</id>
|
|
<name>Nexus Snapshot Repository</name>
|
|
<url>http://repository.fit2cloud.com/content/repositories/snapshots/</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
|
|
</project>
|