You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.6 KiB
77 lines
2.6 KiB
|
3 years ago
|
<?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">
|
||
|
|
|
||
|
|
<parent>
|
||
|
|
<artifactId>lab-ops</artifactId>
|
||
|
|
<groupId>org.springblade</groupId>
|
||
|
|
<version>2.8.1.RELEASE</version>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<groupId>org.springblade.office</groupId>
|
||
|
|
<artifactId>lab-office</artifactId>
|
||
|
|
<version>2.8.1.RELEASE</version>
|
||
|
|
<name>lab-office</name>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springblade</groupId>
|
||
|
|
<artifactId>lab-common</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springblade</groupId>
|
||
|
|
<artifactId>blade-core-boot</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!--common 结束-->
|
||
|
|
<!-- 添加Sqlite依赖(可选:如果不需要使用印章功能的话,不需要添加此依赖 )-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.xerial</groupId>
|
||
|
|
<artifactId>sqlite-jdbc</artifactId>
|
||
|
|
<version>3.32.3.2</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!--Pageoffice的jar已经打包到maven中央仓库,用下面的方式即可引用 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.zhuozhengsoft</groupId>
|
||
|
|
<artifactId>pageoffice</artifactId>
|
||
|
|
<version>5.3.0.3</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>com.spotify</groupId>
|
||
|
|
<artifactId>dockerfile-maven-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<username>${docker.username}</username>
|
||
|
|
<password>${docker.password}</password>
|
||
|
|
<repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository>
|
||
|
|
<tag>${project.version}</tag>
|
||
|
|
<useMavenSettingsForAuth>true</useMavenSettingsForAuth>
|
||
|
|
<buildArgs>
|
||
|
|
<JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
|
||
|
|
</buildArgs>
|
||
|
|
<skip>true</skip>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
</project>
|