| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <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>org.jeecgframework.boot</groupId>
- <artifactId>tnc-parent</artifactId>
- <version>3.2.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>tnc-system</artifactId>
- <repositories>
- <repository>
- <id>aliyun</id>
- <name>aliyun Repository</name>
- <url>https://maven.aliyun.com/repository/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>
- <!-- system api 模块 -->
- <dependency>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>tnc-system-api</artifactId>
- </dependency>
- <!-- sms 模块 -->
- <dependency>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>tnc-sms</artifactId>
- </dependency>
- <!-- online 在线开发模块 -->
- <dependency>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>tnc-online</artifactId>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.jeecgframework.boot</groupId>-->
- <!-- <artifactId>hibernate-re</artifactId>-->
- <!-- </dependency>-->
- <!-- 企业微信/钉钉 api -->
- <dependency>
- <groupId>org.jeecgframework</groupId>
- <artifactId>jeewx-api</artifactId>
- </dependency>
- <!-- 积木报表 -->
- <dependency>
- <groupId>org.jeecgframework.jimureport</groupId>
- <artifactId>jimureport-spring-boot-starter</artifactId>
- </dependency>
- <!-- Flowable 工作流(官方依赖) -->
- <dependency>
- <groupId>org.flowable</groupId>
- <artifactId>flowable-spring-boot-starter-process</artifactId>
- <version>6.8.0</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <!--SpringCloud运行环境 ,值改为true跳过SpringBoot启动打包插件 -->
- <skip>${skip.springboot.maven}</skip>
- </configuration>
- </plugin>
- <!-- assembly 插件配置 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptors>
- <!--suppress UnresolvedMavenProperty -->
- <descriptor>src/main/assembly/assembly-${profile.name}.xml</descriptor>
- </descriptors>
- <tarLongFileMode>gnu</tarLongFileMode>
- </configuration>
- <executions>
- <execution>
- <id>make-assembly</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|