JimuReport/jimureport-samples/jimureport-demo/pom.xml

134 lines
4.3 KiB
XML
Raw Normal View History

2020-12-18 10:47:46 +00:00
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.5.RELEASE</version>
2021-01-08 02:44:30 +00:00
<relativePath/>
2020-12-18 10:47:46 +00:00
</parent>
2021-01-08 02:44:30 +00:00
<groupId>org.jeecg</groupId>
<artifactId>jimureport-demo</artifactId>
<version>1.0.1</version>
2020-12-18 10:47:46 +00:00
<name>jimureport-demo</name>
2021-01-08 02:44:30 +00:00
<url>http://www.jimureport.com</url>
<description>积木报表集成示例</description>
2020-12-18 10:47:46 +00:00
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
2021-01-08 02:44:30 +00:00
<!-- jimureport -->
2020-12-18 10:47:46 +00:00
<dependency>
2021-01-08 02:44:30 +00:00
<groupId>com.jimureport</groupId>
<artifactId>spring-boot-starter-jimureport</artifactId>
<version>1.1.02-beta</version>
2020-12-18 10:47:46 +00:00
</dependency>
2021-01-08 02:44:30 +00:00
<!-- jimureport dependency -->
2020-12-18 10:47:46 +00:00
<dependency>
2021-01-08 02:44:30 +00:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
2020-12-18 10:47:46 +00:00
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.1</version>
</dependency>
2021-01-08 02:44:30 +00:00
<!-- freemarker -->
2020-12-18 10:47:46 +00:00
<dependency>
2021-01-08 02:44:30 +00:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
2020-12-18 10:47:46 +00:00
</dependency>
<!-- AutoPoi Excel-->
<dependency>
<groupId>org.jeecgframework</groupId>
<artifactId>autopoi-web</artifactId>
<version>1.2.2</version>
<exclusions>
<exclusion>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</exclusion>
</exclusions>
<optional>true</optional>
</dependency>
<!-- aliyun oss -->
<dependency>
<groupId>com.aliyun.oss</groupId>
<artifactId>aliyun-sdk-oss</artifactId>
<version>3.6.0</version>
</dependency>
<!-- minio oss -->
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
<version>4.0.0</version>
</dependency>
<!-- hutool工具类-->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.3.8</version>
</dependency>
<!-- json -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.72</version>
</dependency>
2021-01-08 02:44:30 +00:00
<!-- 动态数据源 -->
2020-12-18 10:47:46 +00:00
<dependency>
2021-01-08 02:44:30 +00:00
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.17</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
<version>3.2.0</version>
</dependency>
<!-- DB 驱动包 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
2020-12-18 10:47:46 +00:00
</dependency>
2021-01-08 02:44:30 +00:00
<!-- jimureport dependency -->
2020-12-18 10:47:46 +00:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>aliyun</id>
<name>aliyun Repository</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>jeecg</id>
<name>jeecg Repository</name>
<url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>