pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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>6.0.0-RELEASE</version>
  10. </parent>
  11. <artifactId>jnpf-datareport-univer</artifactId>
  12. <version>6.0.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. <dependencies>
  21. <dependency>
  22. <groupId>org.sejda.imageio</groupId>
  23. <artifactId>webp-imageio</artifactId>
  24. <version>0.1.6</version>
  25. </dependency>
  26. </dependencies>
  27. <profiles>
  28. <profile>
  29. <id>boot3</id>
  30. <activation>
  31. <jdk>[17,)</jdk>
  32. </activation>
  33. <properties>
  34. <jnpf.datareport.core.jdk.version></jnpf.datareport.core.jdk.version>
  35. </properties>
  36. </profile>
  37. <profile>
  38. <id>boot2</id>
  39. <activation>
  40. <jdk>(,17)</jdk>
  41. </activation>
  42. <properties>
  43. <jnpf.datareport.core.jdk.version></jnpf.datareport.core.jdk.version>
  44. <!--若使用JDK8,且无jnpf-datareport-univer-core项目源码, 注释上方版本定义, 删除下方注释, 切换JDK8版本依赖-->
  45. <!-- <jnpf.datareport.core.jdk.version>-jdk8</jnpf.datareport.core.jdk.version>-->
  46. </properties>
  47. </profile>
  48. </profiles>
  49. </project>