pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.hongxin</groupId>
  7. <artifactId>hcd-backend-dependencies</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <relativePath>../hcd-backend-dependencies/pom.xml</relativePath>
  10. </parent>
  11. <artifactId>hcd-backend-service-demo</artifactId>
  12. <packaging>jar</packaging>
  13. <name>hcd-backend-service-demo</name>
  14. <url>http://www.hongxin.com</url>
  15. <inceptionYear>2018-Now</inceptionYear>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.hongxin</groupId>
  19. <artifactId>hcd-backend-common-service</artifactId>
  20. <version>${project.parent.version}</version>
  21. </dependency>
  22. <!-- LCN分布式事务相关依赖 Begin-->
  23. <!-- <dependency>
  24. <groupId>com.codingapi</groupId>
  25. <artifactId>transaction-springcloud</artifactId>
  26. <exclusions>
  27. <exclusion>
  28. <groupId>org.slf4j</groupId>
  29. <artifactId>*</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.codingapi</groupId>
  35. <artifactId>tx-plugins-db</artifactId>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>org.slf4j</groupId>
  39. <artifactId>*</artifactId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>-->
  43. <!-- LCN分布式事务相关依赖 End-->
  44. </dependencies>
  45. <repositories>
  46. <repository>
  47. <id>nexus</id>
  48. <name>Nexus Repository</name>
  49. <url>http://192.168.1.22:8081/repository/maven-public/</url>
  50. <snapshots>
  51. <enabled>true</enabled>
  52. </snapshots>
  53. <releases>
  54. <enabled>true</enabled>
  55. </releases>
  56. </repository>
  57. </repositories>
  58. <build>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. <configuration>
  64. <mainClass>com.hongxin.hcd.backend.service.demo.ServiceDemoApplication</mainClass>
  65. </configuration>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>