84 lines
2.9 KiB
XML
84 lines
2.9 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>energy-service</artifactId>
|
|
<groupId>org.springenergy</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>energy-system</artifactId>
|
|
<name>${project.artifactId}</name>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springenergy</groupId>
|
|
<artifactId>energy-core-boot</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springenergy</groupId>
|
|
<artifactId>energy-starter-excel</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springenergy</groupId>
|
|
<artifactId>energy-starter-swagger</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springenergy</groupId>
|
|
<artifactId>energy-starter-liteflow</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springenergy</groupId>
|
|
<artifactId>energy-system-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springenergy</groupId>
|
|
<artifactId>energy-user-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>5.7.13</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>oracle.jdbc</groupId>
|
|
<artifactId>ojdbc6</artifactId>
|
|
<version>11.2.0.3</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/../../lib/ojdbc6-11.2.0.3.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.opengauss</groupId>
|
|
<artifactId>opengauss-jdbc-official</artifactId>
|
|
<version>6.0.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>io.fabric8</groupId>
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
<configuration>
|
|
<skip>${docker.fabric.skip}</skip>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<includeSystemScope>true</includeSystemScope>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|