12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?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>
- </project>
|