| | |
| | | <optional>true</optional> <!-- 表示依赖不会传递 --> |
| | | </dependency> |
| | | |
| | | <!--springboot支持包,里面包括了自动配置类 --> |
| | | <dependency> |
| | | <groupId>org.jodconverter</groupId> |
| | | <artifactId>jodconverter-spring-boot-starter</artifactId> |
| | | <version>4.4.2</version> |
| | | </dependency> |
| | | |
| | | <!--jodconverter 核心包 --> |
| | | <dependency> |
| | | <groupId>org.jodconverter</groupId> |
| | | <artifactId>jodconverter-core</artifactId> |
| | | <version>4.4.2</version> |
| | | </dependency> |
| | | |
| | | <!--jodconverter 本地支持包 --> |
| | | <dependency> |
| | | <groupId>org.jodconverter</groupId> |
| | | <artifactId>jodconverter-local</artifactId> |
| | | <version>4.4.2</version> |
| | | </dependency> |
| | | |
| | | <!--springboot支持包,里面包括了自动配置类 --> |
| | | <dependency> |
| | | <groupId>org.libreoffice</groupId> |
| | | <artifactId>ridl</artifactId> |
| | | <version>7.2.0</version> |
| | | </dependency> |
| | | |
| | | <!-- Mysql驱动包 --> |
| | | <dependency> |
| | | <groupId>mysql</groupId> |
| | |
| | | <version>${poi.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.apache.poi</groupId> |
| | | <artifactId>ooxml-schemas</artifactId> |
| | | <version>1.4</version> |
| | | </dependency> |
| | | |
| | | <!-- 糊涂工具 --> |
| | | <dependency> |
| | | <groupId>cn.hutool</groupId> |
| | |
| | | <scope>compile</scope> |
| | | </dependency> |
| | | |
| | | </dependencies> |
| | | <dependency> |
| | | <groupId>dom4j</groupId> |
| | | <artifactId>dom4j</artifactId> |
| | | <version>1.6.1</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>jaxen</groupId> |
| | | <artifactId>jaxen</artifactId> |
| | | <version>1.1.6</version> |
| | | </dependency> |
| | | |
| | | <!-- doc转pdf --> |
| | | <dependency> |
| | | <groupId>com.aspose</groupId> |
| | | <artifactId>words</artifactId> |
| | | <version>23.4</version> |
| | | </dependency> |
| | | |
| | | </dependencies> |
| | | <build> |
| | | <finalName>${project.artifactId}</finalName> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-compiler-plugin</artifactId> |
| | | <configuration> |
| | | <source>1.8</source> |
| | | <target>1.8</target> |
| | | <encoding>utf-8</encoding> |
| | | </configuration> |
| | | <artifactId>maven-install-plugin</artifactId> |
| | | <version>2.5.2</version> |
| | | <executions> |
| | | <execution> |
| | | <id>install-external</id> |
| | | <phase>clean</phase> |
| | | <configuration> |
| | | <file>${project.build.directory}/tai-ots-framework-1.0.jar</file> |
| | | <repositoryLayout>default</repositoryLayout> |
| | | <groupId>com.ots</groupId> |
| | | <artifactId>tai-ots-framework</artifactId> |
| | | <version>1.0</version> |
| | | <generatePom>true</generatePom> |
| | | </configuration> |
| | | <goals> |
| | | <goal>install-file</goal> |
| | | </goals> |
| | | </execution> |
| | | </executions> |
| | | </plugin> |
| | | |
| | | </plugins> |
| | | </build> |
| | | |
| | | <repositories> |
| | | <repository> |
| | | <id>public</id> |
| | | <name>aliyun nexus</name> |
| | | <url>http://maven.aliyun.com/nexus/content/groups/public/</url> |
| | | <releases> |
| | | <enabled>true</enabled> |
| | | </releases> |
| | | </repository> |
| | | </repositories> |
| | | |
| | | <pluginRepositories> |
| | | <pluginRepository> |
| | | <id>public</id> |
| | | <name>aliyun nexus</name> |
| | | <url>http://maven.aliyun.com/nexus/content/groups/public/</url> |
| | | <releases> |
| | | <enabled>true</enabled> |
| | | </releases> |
| | | <snapshots> |
| | | <enabled>false</enabled> |
| | | </snapshots> |
| | | </pluginRepository> |
| | | </pluginRepositories> |
| | | |
| | | </project> |