124 lines
4.4 KiB
XML
124 lines
4.4 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">
|
||
|
<parent>
|
||
|
<groupId>net.northking.cctp</groupId>
|
||
|
<artifactId>cctp-parent</artifactId>
|
||
|
<version>1.0.1-RELEASE</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>cctp-flowable</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<properties>
|
||
|
<!-- The main class to start by executing java -jar -->
|
||
|
<start-class>net.northking.cctp.flowable.WorkFlowApplication</start-class>
|
||
|
</properties>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-antrun-plugin</artifactId>
|
||
|
</plugin>
|
||
|
<!-- maven plugin: code generator -->
|
||
|
<plugin>
|
||
|
<groupId>net.northking.cctp</groupId>
|
||
|
<artifactId>cctp-maven-plugin</artifactId>
|
||
|
<version>0.0.141-RELEASE</version>
|
||
|
<configuration>
|
||
|
<jdbcDriver>com.mysql.cj.jdbc.Driver</jdbcDriver>
|
||
|
<jdbcUrl>jdbc:mysql://192.168.77.26:3306/cctp_flowable?useUnicode=true&characterEncoding=utf-8&useSSL=false</jdbcUrl>
|
||
|
<jdbcUsername>northking</jdbcUsername>
|
||
|
<jdbcPassword>northking@002987</jdbcPassword>
|
||
|
<database>cctp_flowable</database>
|
||
|
<schema>cctp_flowable</schema>
|
||
|
<tableNames>sp_act_his,sp_action,sp_def_event,sp_def_event_auth,sp_def_process,sp_def_process_action,sp_def_state,sp_deployment</tableNames>
|
||
|
<basePackage>net.northking.cctp.flowable</basePackage>
|
||
|
</configuration>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
<version>${mysql.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>net.northking.cctp</groupId>
|
||
|
<artifactId>cctp-commons</artifactId>
|
||
|
<version>${cctp-commons.version}</version>
|
||
|
</dependency>
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>org.springframework.cloud</groupId>-->
|
||
|
<!-- <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>-->
|
||
|
<!-- </dependency>-->
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>org.springframework.cloud</groupId>-->
|
||
|
<!-- <artifactId>spring-cloud-config-client</artifactId>-->
|
||
|
<!-- </dependency>-->
|
||
|
<!-- 服务注册管理集成 Nacos Discovery -->
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
||
|
</dependency>
|
||
|
<!-- 配置管理服务集成 Nacos Config -->
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
||
|
</dependency>
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>org.flowable</groupId>-->
|
||
|
<!-- <artifactId>flowable-spring-boot-starter</artifactId>-->
|
||
|
<!-- <version>6.6.0</version>-->
|
||
|
<!-- </dependency>-->
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-lang3</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>net.northking.cctp</groupId>-->
|
||
|
<!-- <artifactId>cctp-boot-test</artifactId>-->
|
||
|
<!-- <version>${project.version}</version>-->
|
||
|
<!-- <scope>test</scope>-->
|
||
|
<!-- </dependency>-->
|
||
|
</dependencies>
|
||
|
|
||
|
|
||
|
</project>
|