pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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>lift-server</artifactId>
  7. <groupId>cn.com.ty</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>lift-enterprise-service</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.com.xwy</groupId>
  16. <artifactId>xwy-spring-boot</artifactId>
  17. </dependency>
  18. <!--<dependency>
  19. <groupId>cn.com.xwy</groupId>
  20. <artifactId>xwy-cloud-dependencies</artifactId>
  21. </dependency>-->
  22. </dependencies>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-maven-plugin</artifactId>
  28. <configuration>
  29. <mainClass>cn.com.ty.lift.enterprise.EnterpriseApplication</mainClass>
  30. </configuration>
  31. <!-- <executions>-->
  32. <!-- <execution>-->
  33. <!-- <goals>-->
  34. <!-- <goal>repackage</goal>-->
  35. <!-- </goals>-->
  36. <!-- </execution>-->
  37. <!-- </executions>-->
  38. </plugin>
  39. </plugins>
  40. </build>
  41. </project>