pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. <groupId>com.unis.app</groupId>
  7. <artifactId>accountability-app</artifactId>
  8. <version>1.0</version>
  9. <parent>
  10. <groupId>com.unis.springcloud</groupId>
  11. <artifactId>parent</artifactId>
  12. <version>1.0.0</version>
  13. </parent>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.cloud</groupId>
  17. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.cloud</groupId>
  21. <artifactId>spring-cloud-config-client</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.github.pagehelper</groupId>
  29. <artifactId>pagehelper-spring-boot-starter</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.unis.springcloud</groupId>
  33. <artifactId>common</artifactId>
  34. <version>1.0.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.projectlombok</groupId>
  38. <artifactId>lombok</artifactId>
  39. <!--<optional>true</optional>-->
  40. </dependency>
  41. <dependency>
  42. <artifactId>accountability-client</artifactId>
  43. <groupId>com.unis.accountability</groupId>
  44. <version>1.0</version>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-maven-plugin</artifactId>
  52. </plugin>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-surefire-plugin</artifactId>
  56. <version>2.21.0</version>
  57. <configuration>
  58. <testFailureIgnore>true</testFailureIgnore>
  59. </configuration>
  60. </plugin>
  61. </plugins>
  62. <finalName>accountability-app</finalName>
  63. </build>
  64. <repositories>
  65. <repository>
  66. <id>spring-milestones</id>
  67. <name>Spring Milestones</name>
  68. <url>https://repo.spring.io/milestone</url>
  69. <snapshots>
  70. <enabled>false</enabled>
  71. </snapshots>
  72. </repository>
  73. </repositories>
  74. </project>