pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. <parent>
  6. <artifactId>ktg</artifactId>
  7. <groupId>com.ktg</groupId>
  8. <version>3.8.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ktg-mes</artifactId>
  12. <description>
  13. MES 系统
  14. </description>
  15. <dependencies>
  16. <!--jasperreport组件-->
  17. <!--<dependency>
  18. <groupId>net.sf.jasperreports</groupId>
  19. <artifactId>jasperreports</artifactId>
  20. <version>6.18.1</version>
  21. <exclusions>
  22. <exclusion>
  23. <groupId>com.lowagie</groupId>
  24. <artifactId>itext</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>-->
  28. <!--<dependency>
  29. <groupId>com.lowagie</groupId>
  30. <artifactId>itext</artifactId>
  31. <version>2.1.7</version>
  32. </dependency>-->
  33. <dependency>
  34. <groupId>net.sf.jasperreports</groupId>
  35. <artifactId>jasperreports</artifactId>
  36. <version>7.0.3</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>net.sf.jasperreports</groupId>
  40. <artifactId>jasperreports-fonts</artifactId>
  41. <version>6.18.1</version>
  42. </dependency>
  43. <!--PDF生成组件-->
  44. <dependency>
  45. <groupId>com.itextpdf</groupId>
  46. <artifactId>itextpdf</artifactId>
  47. <version>5.5.11</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.itextpdf</groupId>
  51. <artifactId>itext-pdfa</artifactId>
  52. <version>5.5.11</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.itextpdf</groupId>
  56. <artifactId>itext-asian</artifactId>
  57. <version>5.2.0</version>
  58. </dependency>
  59. <!-- 通用工具-->
  60. <dependency>
  61. <groupId>com.ktg</groupId>
  62. <artifactId>ktg-framework</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.swagger</groupId>
  66. <artifactId>swagger-models</artifactId>
  67. <version>1.6.2</version>
  68. </dependency>
  69. </dependencies>
  70. </project>