123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.qmth.teachcloud.data</groupId>
- <artifactId>teachcloud-data</artifactId>
- <version>3.4.4</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>8</source>
- <target>8</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <packaging>jar</packaging>
- <parent>
- <groupId>com.qmth.distributed.print.service</groupId>
- <artifactId>distributed-print-service</artifactId>
- <version>3.4.4</version>
- </parent>
- <dependencies>
- <dependency>
- <groupId>com.qmth.teachcloud.common</groupId>
- <artifactId>teachcloud-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qmth.distributed.print.business</groupId>
- <artifactId>distributed-print-business</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-sms</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jetbrains</groupId>
- <artifactId>annotations</artifactId>
- </dependency>
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>javase</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- <version>1.2.15</version>
- </dependency>
- <dependency>
- <groupId>commons-dbutils</groupId>
- <artifactId>commons-dbutils</artifactId>
- <version>1.8.1</version>
- </dependency>
- <dependency>
- <groupId>com.oracle.database.jdbc</groupId>
- <artifactId>ojdbc8</artifactId>
- <version>23.6.0.24.10</version>
- </dependency>
- </dependencies>
- </project>
|