pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. <artifactId>lift-system-service</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.com.xwy</groupId>
  15. <artifactId>xwy-spring-boot</artifactId>
  16. </dependency>
  17. <!-- <dependency>-->
  18. <!-- <groupId>cn.com.xwy</groupId>-->
  19. <!-- <artifactId>xwy-cloud-dependencies</artifactId>-->
  20. <!-- </dependency>-->
  21. <!-- 添加公共模块依赖 -->
  22. <dependency>
  23. <groupId>cn.com.ty</groupId>
  24. <artifactId>lift-common</artifactId>
  25. <version>1.0-SNAPSHOT</version>
  26. </dependency>
  27. <!--Apache 公共bean工具包 -->
  28. <dependency>
  29. <groupId>commons-beanutils</groupId>
  30. <artifactId>commons-beanutils</artifactId>
  31. <version>1.9.3</version>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-maven-plugin</artifactId>
  39. <configuration>
  40. <mainClass>cn.com.ty.lift.system.SystemApplication</mainClass>
  41. </configuration>
  42. <executions>
  43. <execution>
  44. <goals>
  45. <goal>repackage</goal>
  46. </goals>
  47. </execution>
  48. </executions>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>