pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. <artifactId>report-parent</artifactId>
  8. <groupId>com.uas.report</groupId>
  9. <version>0.0.1</version>
  10. </parent>
  11. <artifactId>crystal-replace-view</artifactId>
  12. <packaging>jar</packaging>
  13. <repositories>
  14. <repository>
  15. <id>lib</id>
  16. <url>file://${project.basedir}/lib</url>
  17. </repository>
  18. </repositories>
  19. <dependencies>
  20. <dependency>
  21. <groupId>junit</groupId>
  22. <artifactId>junit</artifactId>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.uas.report</groupId>
  27. <artifactId>report-common</artifactId>
  28. </dependency>
  29. <!-- crystal reports dependencies -->
  30. <dependency>
  31. <groupId>com.crystaldecisions</groupId>
  32. <artifactId>CrystalReportsRuntime</artifactId>
  33. <version>1.0.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.crystaldecisions</groupId>
  37. <artifactId>CrystalCommon2</artifactId>
  38. <version>1.0.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.crystaldecisions</groupId>
  42. <artifactId>DatabaseConnectors</artifactId>
  43. <version>1.0.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.businessobjects.foundation</groupId>
  47. <artifactId>logging</artifactId>
  48. <version>1.0.0</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.crystaldecisions</groupId>
  52. <artifactId>keycodeDecoder</artifactId>
  53. <version>1.0.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.businessobjects.reports</groupId>
  57. <artifactId>JDBInterface</artifactId>
  58. <version>1.0.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.slf4j</groupId>
  62. <artifactId>log4j-over-slf4j</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>commons-configuration</groupId>
  66. <artifactId>commons-configuration</artifactId>
  67. <version>1.10</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.ibm.icu</groupId>
  71. <artifactId>icu4j</artifactId>
  72. <version>60.2</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>commons-collections</groupId>
  76. <artifactId>commons-collections</artifactId>
  77. <version>3.2.2</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.azalea.ufl</groupId>
  81. <artifactId>barcode</artifactId>
  82. <version>1.0.0</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.lowagie</groupId>
  86. <artifactId>itext</artifactId>
  87. <version>2.1.7.js5</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.oracle</groupId>
  91. <artifactId>ojdbc6</artifactId>
  92. </dependency>
  93. </dependencies>
  94. <build>
  95. <plugins>
  96. <plugin>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-maven-plugin</artifactId>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. </project>