pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.lc.ibps.form</groupId>
  6. <artifactId>ibps-form-root</artifactId>
  7. <version>3.3.7-LC.RELEASE</version>
  8. <relativePath>../../pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ibps-form-biz</artifactId>
  12. <properties>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.lc.ibps.api</groupId>
  17. <artifactId>ibps-api-form</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.lc.ibps.components</groupId>
  21. <artifactId>ibps-component-querybuilder</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.lc.ibps.form</groupId>
  25. <artifactId>ibps-bo-biz</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.lc.ibps.model</groupId>
  29. <artifactId>ibps-form-model</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.jsoup</groupId>
  33. <artifactId>jsoup</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>net.sf.barcode4j</groupId>
  37. <artifactId>barcode4j-light</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.google.zxing</groupId>
  41. <artifactId>core</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.google.zxing</groupId>
  45. <artifactId>javase</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.lc.ibps.provider.base</groupId>
  49. <artifactId>ibps-provider-platform-api</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.lc.ibps.cloud.base</groupId>
  53. <artifactId>ibps-comp-file-server-api</artifactId>
  54. </dependency>
  55. <!-- PDF -->
  56. <dependency>
  57. <groupId>com.itextpdf</groupId>
  58. <artifactId>itextpdf</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.itextpdf.tool</groupId>
  62. <artifactId>xmlworker</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.itextpdf</groupId>
  66. <artifactId>itext-asian</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>mysql</groupId>
  70. <artifactId>mysql-connector-java</artifactId>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.oracle</groupId>
  75. <artifactId>oracledriver</artifactId>
  76. <scope>test</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>junit</groupId>
  80. <artifactId>junit</artifactId>
  81. <scope>test</scope>
  82. </dependency>
  83. </dependencies>
  84. <build>
  85. <plugins>
  86. <plugin>
  87. <artifactId>maven-compiler-plugin</artifactId>
  88. <version>3.3</version>
  89. <configuration>
  90. <source>1.8</source>
  91. <target>1.8</target>
  92. <encoding>UTF-8</encoding>
  93. </configuration>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. </project>