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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-gmetry-bi</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>platomix-gmetry-bi-api</artifactId>
- <version>3.4.49</version>
- <dependencies>
- <dependency>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-gmetry-framework</artifactId>
- <version>1.1.1</version>
- </dependency>
- <dependency>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-gmetry-system-client</artifactId>
- <version>1.1.3</version>
- </dependency>
- <dependency>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-gmetry-bi-client</artifactId>
- <version>1.0.5</version>
- </dependency>
- <dependency>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-gmetry-message</artifactId>
- <version>1.0.5</version>
- </dependency>
- <dependency>
- <groupId>com.clickhouse</groupId>
- <artifactId>clickhouse-jdbc</artifactId>
- </dependency>
- <dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc7</artifactId>
- </dependency>
- <dependency>
- <groupId>com.microsoft.sqlserver</groupId>
- <artifactId>mssql-jdbc</artifactId>
- </dependency>
- <dependency>
- <groupId>com.kingbase8</groupId>
- <artifactId>kingbase8</artifactId>
- </dependency>
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- </dependency>
- <dependency>
- <groupId>com.dameng</groupId>
- <artifactId>DmJdbcDriver18</artifactId>
- </dependency>
- <dependency>
- <groupId>com.uxdb</groupId>
- <artifactId>UxJdbcDriver</artifactId>
- <version>${uxdb.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xugu.linux</groupId>
- <artifactId>XuGuJdbcDriver</artifactId>
- <version>12.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.xugu.win</groupId>
- <artifactId>XuGuJdbcDriver</artifactId>
- <version>12.0.0</version>
- </dependency>
- <!-- xxl-job-core -->
- <dependency>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-gmetry-xxljob-core</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.apache.pdfbox</groupId>
- <artifactId>pdfbox</artifactId>
- <version>2.0.19</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>easyexcel</artifactId>
- <version>3.2.0</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>platomix-gmetry-bi</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>io.fabric8</groupId>
- <artifactId>docker-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>build-push</id>
- <phase>package</phase>
- <goals>
- <goal>build</goal>
- <goal>push</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|