pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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>b2b2c</artifactId>
  7. <groupId>com.slodon</groupId>
  8. <version>3.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>b2b2c-captcha</artifactId>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <java.version>1.8</java.version>
  15. <spring-boot.version>2.2.2.RELEASE</spring-boot.version>
  16. <bbc-core.version>3.0</bbc-core.version>
  17. </properties>
  18. <dependencies>
  19. <!-- local -->
  20. <dependency>
  21. <groupId>com.slodon</groupId>
  22. <artifactId>b2b2c-core</artifactId>
  23. <version>${bbc-core.version}</version>
  24. </dependency>
  25. <!-- web start -->
  26. <dependency>
  27. <groupId>javax.servlet</groupId>
  28. <artifactId>javax.servlet-api</artifactId>
  29. <version>3.1.0</version>
  30. <scope>provided</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.jhlabs</groupId>
  34. <artifactId>filters</artifactId>
  35. <version>2.0.235-1</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-configuration-processor</artifactId>
  40. <optional>true</optional>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-web</artifactId>
  45. </dependency>
  46. <!-- redis-starter -->
  47. <dependency>
  48. <groupId>com.slodon</groupId>
  49. <artifactId>redis-slodon-starter</artifactId>
  50. <version>3.0</version>
  51. </dependency>
  52. <!-- commons -->
  53. <dependency>
  54. <groupId>commons-codec</groupId>
  55. <artifactId>commons-codec</artifactId>
  56. <version>1.10</version>
  57. </dependency>
  58. </dependencies>
  59. <dependencyManagement>
  60. <dependencies>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-dependencies</artifactId>
  64. <version>${spring-boot.version}</version>
  65. <type>pom</type>
  66. <scope>import</scope>
  67. </dependency>
  68. </dependencies>
  69. </dependencyManagement>
  70. </project>