pom.xml 3.8 KB

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