pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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-business-service</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.com.xwy</groupId>
  16. <artifactId>xwy-spring-boot</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>cn.com.ty</groupId>
  20. <artifactId>lift-common</artifactId>
  21. <version>1.0-SNAPSHOT</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.ning</groupId>
  25. <artifactId>async-http-client</artifactId>
  26. <version>1.9.32</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>commons-lang</groupId>
  30. <artifactId>commons-lang</artifactId>
  31. <version>2.6</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>commons-fileupload</groupId>
  35. <artifactId>commons-fileupload</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>cn.com.xwy</groupId>
  39. <artifactId>xwy-cloud-dependencies</artifactId>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-maven-plugin</artifactId>
  47. <configuration>
  48. <mainClass>cn.com.ty.lift.business.BusinessApplication</mainClass>
  49. </configuration>
  50. <executions>
  51. <execution>
  52. <goals>
  53. <goal>repackage</goal>
  54. </goals>
  55. </execution>
  56. </executions>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>