|
@@ -15,6 +15,9 @@
|
|
<module>tools-signature</module>
|
|
<module>tools-signature</module>
|
|
<module>tools-common</module>
|
|
<module>tools-common</module>
|
|
<module>tools-device</module>
|
|
<module>tools-device</module>
|
|
|
|
+ <module>tools-pdf</module>
|
|
|
|
+ <module>tools-freemarker</module>
|
|
|
|
+ <module>tools-zxing</module>
|
|
<module>data-redis</module>
|
|
<module>data-redis</module>
|
|
<module>data-mybatis-plus</module>
|
|
<module>data-mybatis-plus</module>
|
|
<module>core-models</module>
|
|
<module>core-models</module>
|
|
@@ -40,6 +43,8 @@
|
|
<springboot.version>2.3.7.RELEASE</springboot.version>
|
|
<springboot.version>2.3.7.RELEASE</springboot.version>
|
|
<okhttp.version>3.14.9</okhttp.version>
|
|
<okhttp.version>3.14.9</okhttp.version>
|
|
<io.micrometer.version>1.10.4</io.micrometer.version>
|
|
<io.micrometer.version>1.10.4</io.micrometer.version>
|
|
|
|
+ <openpdf.version>1.3.33</openpdf.version>
|
|
|
|
+ <zxing.version>3.5.2</zxing.version>
|
|
</properties>
|
|
</properties>
|
|
|
|
|
|
<dependencyManagement>
|
|
<dependencyManagement>
|
|
@@ -65,6 +70,21 @@
|
|
<artifactId>tools-device</artifactId>
|
|
<artifactId>tools-device</artifactId>
|
|
<version>${project.version}</version>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>tools-pdf</artifactId>
|
|
|
|
+ <version>${project.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>tools-freemarker</artifactId>
|
|
|
|
+ <version>${project.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>tools-zxing</artifactId>
|
|
|
|
+ <version>${project.version}</version>
|
|
|
|
+ </dependency>
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>com.qmth.boot</groupId>
|
|
<groupId>com.qmth.boot</groupId>
|
|
<artifactId>tools-common</artifactId>
|
|
<artifactId>tools-common</artifactId>
|
|
@@ -352,6 +372,36 @@
|
|
<artifactId>slf4j-api</artifactId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.7.32</version>
|
|
<version>1.7.32</version>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.github.librepdf/openpdf -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.github.librepdf</groupId>
|
|
|
|
+ <artifactId>openpdf</artifactId>
|
|
|
|
+ <version>${openpdf.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.github.librepdf/openpdf-fonts-extra -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.github.librepdf</groupId>
|
|
|
|
+ <artifactId>openpdf-fonts-extra</artifactId>
|
|
|
|
+ <version>${openpdf.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.freemarker/freemarker -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.freemarker</groupId>
|
|
|
|
+ <artifactId>freemarker</artifactId>
|
|
|
|
+ <version>2.3.32</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.google.zxing/core -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.google.zxing</groupId>
|
|
|
|
+ <artifactId>core</artifactId>
|
|
|
|
+ <version>${zxing.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.google.zxing/javase -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.google.zxing</groupId>
|
|
|
|
+ <artifactId>javase</artifactId>
|
|
|
|
+ <version>${zxing.version}</version>
|
|
|
|
+ </dependency>
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<artifactId>junit</artifactId>
|