160 lines
4.8 KiB
XML
160 lines
4.8 KiB
XML
|
|
<?xml version="1.0"?>
|
||
|
|
<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.springenergy</groupId>
|
||
|
|
<artifactId>energy-service</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<artifactId>energy-biz-index-query</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-swagger</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springenergy</groupId>
|
||
|
|
<artifactId>energy-starter-oss</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.minio</groupId>
|
||
|
|
<artifactId>minio</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springenergy</groupId>
|
||
|
|
<artifactId>energy-starter-liteflow</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springenergy</groupId>
|
||
|
|
<artifactId>energy-core-test</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springenergy</groupId>
|
||
|
|
<artifactId>energy-core-auto</artifactId>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</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>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.oracle.database.jdbc</groupId>
|
||
|
|
<artifactId>ojdbc8</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.postgresql</groupId>
|
||
|
|
<artifactId>postgresql</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.elasticsearch.plugin</groupId>
|
||
|
|
<artifactId>transport-netty4-client</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.elasticsearch.client</groupId>
|
||
|
|
<artifactId>transport</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.elasticsearch</groupId>
|
||
|
|
<artifactId>elasticsearch</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
|
<version>5.1.46</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.nlpcn</groupId>
|
||
|
|
<artifactId>elasticsearch-sql</artifactId>
|
||
|
|
<version>6.2.4.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.pagehelper</groupId>
|
||
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
||
|
|
<version>1.4.6</version>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>org.mybatis</groupId>
|
||
|
|
<artifactId>mybatis</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>org.mybatis</groupId>
|
||
|
|
<artifactId>mybatis-spring</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- <dependency>-->
|
||
|
|
<!-- <groupId>org.apache.httpcomponents</groupId>-->
|
||
|
|
<!-- <artifactId>httpclient</artifactId>-->
|
||
|
|
<!-- <version>4.5.2</version>-->
|
||
|
|
<!-- </dependency>-->
|
||
|
|
<!-- <dependency>-->
|
||
|
|
<!-- <groupId>org.apache.httpcomponents</groupId>-->
|
||
|
|
<!-- <artifactId>fluent-hc</artifactId>-->
|
||
|
|
<!-- <version>4.5.1</version>-->
|
||
|
|
<!-- </dependency>-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springenergy</groupId>
|
||
|
|
<artifactId>energy-starter-sms</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springenergy</groupId>
|
||
|
|
<artifactId>energy-starter-http</artifactId>
|
||
|
|
</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>
|