| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>jeecg-boot-parent</artifactId>
- <version>2.4.3</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>jeecg-boot-module-system</artifactId>
- <repositories>
- <repository>
- <id>aliyun</id>
- <name>aliyun Repository</name>
- <url>https://maven.aliyun.com/nexus/content/groups/public</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- <repository>
- <id>jeecg</id>
- <name>jeecg Repository</name>
- <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- </repositories>
- <dependencies>
- <!-- <dependency>-->
- <!-- <groupId>com.alibaba.cloud</groupId>-->
- <!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
- <!-- <version>${spring-cloud-alibaba.version}</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>com.alibaba.cloud</groupId>-->
- <!-- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>-->
- <!-- <version>${spring-cloud-alibaba.version}</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.cloud</groupId>-->
- <!-- <artifactId>spring-cloud-starter-openfeign</artifactId>-->
- <!-- <version>${spring-cloud-alibaba.version}</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>io.github.draco1023</groupId>
- <artifactId>poi-tl-ext</artifactId>
- <version>0.3.3</version>
- </dependency>
- <dependency>
- <groupId>com.deepoove</groupId>
- <artifactId>poi-tl</artifactId>
- <version>1.10.3</version>
- </dependency>
- <!--rabbitmq消息队列-->
- <!-- <dependency>-->
- <!-- <groupId>org.jeecgframework.boot</groupId>-->
- <!-- <artifactId>jeecg-boot-starter-rabbitmq</artifactId>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>jeecg-system-local-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>jeecg-boot-module-demo</artifactId>
- <version>${jeecgboot.version}</version>
- </dependency>
- <!--rabbitmq消息队列-->
- <!-- <dependency>-->
- <!-- <groupId>org.jeecgframework.boot</groupId>-->
- <!-- <artifactId>jeecg-boot-starter-rabbitmq</artifactId>-->
- <!-- </dependency>-->
- <!-- 积木报表 -->
- <dependency>
- <groupId>org.jeecgframework.jimureport</groupId>
- <artifactId>spring-boot-starter-jimureport</artifactId>
- <version>1.2.1</version>
- <exclusions>
- <exclusion>
- <groupId>org.jeecgframework</groupId>
- <artifactId>autopoi-web</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- 自定义的,为了能打包 -->
- <dependency>
- <groupId>com.nanli</groupId>
- <artifactId>com-nanli</artifactId>
- <version>1.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/src/lib/aspose.slides-15.9.0.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.nanli</groupId>
- <artifactId>nanlispire</artifactId>
- <version>3.9.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/src/lib/spire.doc.free-3.9.0.jar</systemPath>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <!--微服务模式下修改为true,跳过此打包插件,否则微服务模块无法引用-->
- <skip>false</skip>
- <includeSystemScope>true</includeSystemScope>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.6</version>
- <configuration>
- <webResources>
- <resource>
- <!-- 源jar包所在位置, ${project.basedir} 表示当前目录的路径 -->
- <directory>${project.basedir}/src/lib</directory>
- <!-- 打包后的目标文件夹 ,也就是你打包后的war包或者jar包的目录 -->
- <targetPath>WEB-INF/lib</targetPath>
- <filtering>false</filtering>
- <includes>
- <!-- 把所有的jar包都打进去 -->
- <include>**/*.jar</include>
- </includes>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- </plugins>
- <!--<resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- <excludes>
- <exclude>server.jks</exclude>
- </excludes>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>false</filtering>
- <includes>
- <include>server.jks</include>
- </includes>
- </resource>
- </resources>-->
- </build>
- </project>
|