pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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.sd</groupId>
  8. <artifactId>shdy_project</artifactId>
  9. <version>2.0</version>
  10. </parent>
  11. <artifactId>sd-starter</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.sd</groupId>
  15. <artifactId>sd-framework</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.sd</groupId>
  19. <artifactId>sd-business</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.sd</groupId>
  23. <artifactId>sd-wln</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.bytedeco</groupId>
  27. <artifactId>opencv</artifactId>
  28. <version>4.7.0-1.5.9</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.commons</groupId>
  32. <artifactId>commons-imaging</artifactId>
  33. <version>1.0-alpha3</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.itextpdf</groupId>
  37. <artifactId>itextpdf</artifactId>
  38. <version>5.5.13.3</version>
  39. </dependency>
  40. <!-- https://mvnrepository.com/artifact/com.lowagie/itext -->
  41. <dependency>
  42. <groupId>com.lowagie</groupId>
  43. <artifactId>itext</artifactId>
  44. <version>4.2.2</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-test</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>junit</groupId>
  53. <artifactId>junit</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <finalName>shdy-starter</finalName>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. <executions>
  64. <execution>
  65. <goals>
  66. <goal>repackage</goal>
  67. </goals>
  68. </execution>
  69. </executions>
  70. </plugin>
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-war-plugin</artifactId>
  74. <version>3.1.0</version>
  75. <configuration>
  76. <failOnMissingWebXml>false</failOnMissingWebXml>
  77. <warName>${project.artifactId}</warName>
  78. </configuration>
  79. </plugin>
  80. </plugins>
  81. </build>
  82. </project>