pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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-common</artifactId>
  9. <version>5.2.0-RELEASE</version>
  10. </parent>
  11. <artifactId>jnpf-datareport-univer-core</artifactId>
  12. <version>5.2.0-RELEASE</version>
  13. <packaging>pom</packaging>
  14. <properties>
  15. <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
  16. <maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version>
  17. <maven-install-plugin.version>2.5.2</maven-install-plugin.version>
  18. <maven-dependency-plugin.version>3.8.1</maven-dependency-plugin.version>
  19. <maven-resources-plugin.version>2.6</maven-resources-plugin.version>
  20. <exec-maven-plugin.version>1.2.1</exec-maven-plugin.version>
  21. <class-winter-maven-plugin.version>enhance-2.9.4</class-winter-maven-plugin.version>
  22. <poi.version>5.3.0</poi.version>
  23. </properties>
  24. <modules>
  25. <module>jnpf-datareport-univer-common</module>
  26. <module>jnpf-datareport-univer-model</module>
  27. </modules>
  28. <build>
  29. <pluginManagement>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-compiler-plugin</artifactId>
  34. <version>${maven-compiler-plugin.version}</version>
  35. </plugin>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-deploy-plugin</artifactId>
  39. <version>${maven-deploy-plugin.version}</version>
  40. </plugin>
  41. <plugin>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-maven-plugin</artifactId>
  44. <version>${spring-boot.version}</version>
  45. </plugin>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-install-plugin</artifactId>
  49. <version>${maven-install-plugin.version}</version>
  50. </plugin>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-dependency-plugin</artifactId>
  54. <version>${maven-dependency-plugin.version}</version>
  55. </plugin>
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-resources-plugin</artifactId>
  59. <version>${maven-resources-plugin.version}</version>
  60. </plugin>
  61. <plugin>
  62. <groupId>org.codehaus.mojo</groupId>
  63. <artifactId>exec-maven-plugin</artifactId>
  64. <version>${exec-maven-plugin.version}</version>
  65. </plugin>
  66. <plugin>
  67. <groupId>com.idea-aedi</groupId>
  68. <artifactId>class-winter-maven-plugin</artifactId>
  69. <version>${class-winter-maven-plugin.version}</version>
  70. </plugin>
  71. </plugins>
  72. </pluginManagement>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-compiler-plugin</artifactId>
  77. <configuration>
  78. <parameters>true</parameters>
  79. <source>${maven.compiler.source}</source>
  80. <target>${maven.compiler.target}</target>
  81. <encoding>${project.build.sourceEncoding}</encoding>
  82. </configuration>
  83. </plugin>
  84. <plugin>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-maven-plugin</artifactId>
  87. </plugin>
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-deploy-plugin</artifactId>
  91. </plugin>
  92. </plugins>
  93. </build>
  94. <!--私服仓库配置-->
  95. <distributionManagement>
  96. <repository>
  97. <id>maven-releases</id>
  98. <name>maven-releases</name>
  99. <url>http://nexus.jnpfsoft.com/repository/maven-releases/</url>
  100. </repository>
  101. </distributionManagement>
  102. </project>