2025-06-30 09:38:03 +08:00

59 lines
2.0 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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-core</artifactId>
<version>5.2.0-RELEASE</version>
</parent>
<artifactId>jnpf-datareport-univer</artifactId>
<version>5.2.0-RELEASE</version>
<packaging>pom</packaging>
<modules>
<module>jnpf-datareport-univer-entity</module>
<module>jnpf-datareport-univer-biz</module>
<module>jnpf-datareport-univer-controller</module>
<module>jnpf-datareport-univer-admin</module>
</modules>
<profiles>
<profile>
<id>boot3</id>
<activation>
<jdk>[17,)</jdk>
</activation>
<properties>
<jnpf.datareport.core.jdk.version></jnpf.datareport.core.jdk.version>
</properties>
</profile>
<profile>
<id>boot2</id>
<activation>
<jdk>(,17)</jdk>
</activation>
<properties>
<jnpf.datareport.core.jdk.version></jnpf.datareport.core.jdk.version>
<!--若使用JDK8且无jnpf-datareport-univer-core项目源码 注释上方版本定义, 删除下方注释, 切换JDK8版本依赖-->
<!-- <jnpf.datareport.core.jdk.version>-jdk8</jnpf.datareport.core.jdk.version>-->
</properties>
</profile>
</profiles>
<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>