pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. <dependency>
  28. <groupId>cn.com.ty</groupId>
  29. <artifactId>lift-push</artifactId>
  30. <version>1.0-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.google.zxing</groupId>
  34. <artifactId>core</artifactId>
  35. <version>3.3.3</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.bouncycastle</groupId>
  43. <artifactId>bcprov-jdk15on</artifactId>
  44. <version>1.62</version>
  45. <scope>compile</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.tencent</groupId>
  49. <artifactId>xinge-push</artifactId>
  50. <version>1.2.0</version>
  51. <scope>compile</scope>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-maven-plugin</artifactId>
  59. <configuration>
  60. <mainClass>cn.com.ty.lift.system.SystemApplication</mainClass>
  61. </configuration>
  62. <executions>
  63. <execution>
  64. <goals>
  65. <goal>repackage</goal>
  66. </goals>
  67. </execution>
  68. </executions>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>