mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-08 07:12:42 +08:00
64 lines
2.0 KiB
XML
64 lines
2.0 KiB
XML
<?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>
|
|
<parent>
|
|
<groupId>com.jnpf</groupId>
|
|
<artifactId>jnpf-datareport-univer</artifactId>
|
|
<version>5.2.0-RELEASE</version>
|
|
</parent>
|
|
|
|
<artifactId>jnpf-datareport-univer-admin</artifactId>
|
|
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.jnpf</groupId>
|
|
<artifactId>jnpf-common-security</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jnpf</groupId>
|
|
<artifactId>jnpf-datareport-univer-controller</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
|
|
<profiles>
|
|
|
|
</profiles>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<mainClass>jnpf.ReportUniverApplication</mainClass>
|
|
<layout>ZIP</layout>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<!--私服仓库配置-->
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>maven-releases</id>
|
|
<url>http://222.184.49.22:19999/repository/maven-releases/</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>maven-snapshots</id>
|
|
<url>http://222.184.49.22:19999/repository/maven-snapshots/</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
</project>
|