mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-08 07:12:42 +08:00
114 lines
3.6 KiB
XML
114 lines
3.6 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>
|
|
<artifactId>jnpf-workflow</artifactId>
|
|
<groupId>com.jnpf</groupId>
|
|
<version>1.0.0-RELEASE</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<packaging>jar</packaging>
|
|
|
|
<artifactId>jnpf-workflow-admin</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Oracle-->
|
|
<dependency>
|
|
<groupId>com.oracle.database.jdbc</groupId>
|
|
<artifactId>ojdbc8</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.oracle.database.nls</groupId>
|
|
<artifactId>orai18n</artifactId>
|
|
</dependency>
|
|
<!-- dm -->
|
|
<dependency>
|
|
<groupId>com.dameng</groupId>
|
|
<artifactId>DmJdbcDriver18</artifactId>
|
|
</dependency>
|
|
<!-- sqlserver -->
|
|
<dependency>
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
<artifactId>mssql-jdbc</artifactId>
|
|
</dependency>
|
|
<!--PostGre-->
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
</dependency>
|
|
<!--GaussDB-->
|
|
<!--<dependency>
|
|
<groupId>org.opengauss</groupId>
|
|
<artifactId>opengauss-jdbc</artifactId>
|
|
</dependency>-->
|
|
<!--HighgoDB-->
|
|
<!--<dependency>
|
|
<groupId>com.highgo</groupId>
|
|
<artifactId>hgdb-pgjdbc</artifactId>
|
|
</dependency>-->
|
|
</dependencies>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>flowable</id>
|
|
<activation>
|
|
<jdk>[,]</jdk>
|
|
</activation>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.jnpf</groupId>
|
|
<artifactId>jnpf-workflow-flowable${jnpf.workflow.core.jdk.version}</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</profile>
|
|
<!--<profile>
|
|
<id>activiti</id>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.jnpf</groupId>
|
|
<artifactId>jnpf-workflow-activiti</artifactId>
|
|
<version>1.0.0-RELEASE</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</profile>-->
|
|
|
|
</profiles>
|
|
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<mainClass>jnpf.JnpfFlowableApplication</mainClass>
|
|
<layout>ZIP</layout>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|