123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.hongxin</groupId>
- <artifactId>hcd-backend-dependencies</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <relativePath>../hcd-backend-dependencies/pom.xml</relativePath>
- </parent>
- <artifactId>hcd-backend-service-demo</artifactId>
- <packaging>jar</packaging>
- <name>hcd-backend-service-demo</name>
- <url>http://www.hongxin.com</url>
- <inceptionYear>2018-Now</inceptionYear>
- <dependencies>
- <dependency>
- <groupId>com.hongxin</groupId>
- <artifactId>hcd-backend-common-service</artifactId>
- <version>${project.parent.version}</version>
- </dependency>
- <!-- LCN分布式事务相关依赖 Begin-->
- <!-- <dependency>
- <groupId>com.codingapi</groupId>
- <artifactId>transaction-springcloud</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>*</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.codingapi</groupId>
- <artifactId>tx-plugins-db</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>*</artifactId>
- </exclusion>
- </exclusions>
- </dependency>-->
- <!-- LCN分布式事务相关依赖 End-->
- </dependencies>
- <repositories>
- <repository>
- <id>nexus</id>
- <name>Nexus Repository</name>
- <url>http://192.168.1.22:8081/repository/maven-public/</url>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- <releases>
- <enabled>true</enabled>
- </releases>
- </repository>
- </repositories>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <mainClass>com.hongxin.hcd.backend.service.demo.ServiceDemoApplication</mainClass>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|