pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.jnpf</groupId>
  8. <artifactId>jnpf-datareport-univer-core</artifactId>
  9. <version>5.2.0-RELEASE</version>
  10. </parent>
  11. <artifactId>jnpf-datareport-univer</artifactId>
  12. <version>5.2.0-RELEASE</version>
  13. <packaging>pom</packaging>
  14. <modules>
  15. <module>jnpf-datareport-univer-entity</module>
  16. <module>jnpf-datareport-univer-biz</module>
  17. <module>jnpf-datareport-univer-controller</module>
  18. <module>jnpf-datareport-univer-admin</module>
  19. </modules>
  20. <profiles>
  21. <profile>
  22. <id>boot3</id>
  23. <activation>
  24. <jdk>[17,)</jdk>
  25. </activation>
  26. <properties>
  27. <jnpf.datareport.core.jdk.version></jnpf.datareport.core.jdk.version>
  28. </properties>
  29. </profile>
  30. <profile>
  31. <id>boot2</id>
  32. <activation>
  33. <jdk>(,17)</jdk>
  34. </activation>
  35. <properties>
  36. <jnpf.datareport.core.jdk.version></jnpf.datareport.core.jdk.version>
  37. <!--若使用JDK8,且无jnpf-datareport-univer-core项目源码, 注释上方版本定义, 删除下方注释, 切换JDK8版本依赖-->
  38. <!-- <jnpf.datareport.core.jdk.version>-jdk8</jnpf.datareport.core.jdk.version>-->
  39. </properties>
  40. </profile>
  41. </profiles>
  42. </project>