| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>space.anyi</groupId>
- <artifactId>newCollection</artifactId>
- <version>1.0-SNAPSHOT</version>
- <properties>
- <maven.compiler.source>25</maven.compiler.source>
- <maven.compiler.target>25</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <!-- Define the version of OPEN HTML TO PDF in the properties section of your POM. -->
- <openhtml.version>1.0.10</openhtml.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus</artifactId>
- <version>3.5.9</version>
- </dependency>
- <dependency>
- <groupId>com.zaxxer</groupId>
- <artifactId>HikariCP</artifactId>
- <version>6.3.3</version>
- </dependency>
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <version>42.7.4</version>
- </dependency>
- <dependency>
- <groupId>org.jsoup</groupId>
- <artifactId>jsoup</artifactId>
- <version>1.16.1</version>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>2.18.3</version>
- </dependency>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter</artifactId>
- <version>5.14.0</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <!-- ALWAYS required, usually included transitively. -->
- <groupId>com.openhtmltopdf</groupId>
- <artifactId>openhtmltopdf-core</artifactId>
- <version>${openhtml.version}</version>
- </dependency>
- <dependency>
- <!-- Required for PDF output. -->
- <groupId>com.openhtmltopdf</groupId>
- <artifactId>openhtmltopdf-pdfbox</artifactId>
- <version>${openhtml.version}</version>
- </dependency>
- <dependency>
- <!-- Required for image output only. -->
- <groupId>com.openhtmltopdf</groupId>
- <artifactId>openhtmltopdf-java2d</artifactId>
- <version>${openhtml.version}</version>
- </dependency>
- <dependency>
- <!-- Optional, leave out if you do not need right-to-left or bi-directional text support. -->
- <groupId>com.openhtmltopdf</groupId>
- <artifactId>openhtmltopdf-rtl-support</artifactId>
- <version>${openhtml.version}</version>
- </dependency>
- <dependency>
- <!-- Optional, leave out if you do not need logging via slf4j. -->
- <groupId>com.openhtmltopdf</groupId>
- <artifactId>openhtmltopdf-slf4j</artifactId>
- <version>${openhtml.version}</version>
- </dependency>
- <dependency>
- <!-- Optional, leave out if you do not need SVG support. -->
- <groupId>com.openhtmltopdf</groupId>
- <artifactId>openhtmltopdf-svg-support</artifactId>
- <version>${openhtml.version}</version>
- </dependency>
- <dependency>
- <!-- Optional, leave out if you do not need MathML support. -->
- <!-- Introduced in RC-13. -->
- <groupId>com.openhtmltopdf</groupId>
- <artifactId>openhtmltopdf-mathml-support</artifactId>
- <version>${openhtml.version}</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>3.5.6</version>
- </plugin>
- </plugins>
- </build>
- </project>
|