123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <?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">
- <parent>
- <groupId>com.ankaibei.workFlow</groupId>
- <artifactId>AnKaiBeiWorkFlow</artifactId>
- <version>1.0.0</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>application-webadmin</artifactId>
- <version>1.0.0</version>
- <name>application-webadmin</name>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>com.anji-plus</groupId>
- <artifactId>spring-boot-starter-captcha</artifactId>
- <version>${ajcaptcha.version}</version>
- </dependency>
- <dependency>
- <groupId>com.ankaibei.workFlow</groupId>
- <artifactId>api</artifactId>
- <version>1.0.0</version>
- </dependency>
- <!-- aj-captcha 依赖data-redis作为缓存 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- <exclusions>
- <exclusion>
- <artifactId>spring-boot-starter-logging</artifactId>
- <groupId>org.springframework.boot</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- 业务组件依赖 -->
- <dependency>
- <groupId>com.ankaibei.workFlow</groupId>
- <artifactId>common-redis</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.ankaibei.workFlow</groupId>
- <artifactId>common-online-api</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.ankaibei.workFlow</groupId>
- <artifactId>common-flow-online</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.ankaibei.workFlow</groupId>
- <artifactId>common-log</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.ankaibei.workFlow</groupId>
- <artifactId>common-minio</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.ankaibei.workFlow</groupId>
- <artifactId>common-sequence</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.ankaibei.workFlow</groupId>
- <artifactId>common-datafilter</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.ankaibei.workFlow</groupId>
- <artifactId>common-swagger</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.ankaibei.workFlow</groupId>
- <artifactId>common-dict</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-jpa</artifactId>
- </dependency>
- <dependency>
- <groupId>org.flowable</groupId>
- <artifactId>flowable-engine-common</artifactId>
- <version>6.6.0</version>
- </dependency>
- </dependencies>
- <build>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <includes>
- <include>**/*.*</include>
- </includes>
- <filtering>false</filtering>
- </resource>
- <resource>
- <directory>src/main/java</directory>
- <includes>
- <include>**/*.xml</include>
- </includes>
- <filtering>false</filtering>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring-boot.version}</version>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|