pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.tzld.commons</groupId>
  8. <artifactId>supom</artifactId>
  9. <version>1.0.9</version>
  10. </parent>
  11. <groupId>com.cybertogether</groupId>
  12. <artifactId>WX-Notice</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <properties>
  15. <maven.compiler.source>8</maven.compiler.source>
  16. <maven.compiler.target>8</maven.compiler.target>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.httpcomponents</groupId>
  26. <artifactId>httpmime</artifactId>
  27. <version>4.5.12</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.alibaba</groupId>
  31. <artifactId>fastjson</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.tzld.commons</groupId>
  35. <artifactId>aliyun-log-spring-boot-starter</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.aliyun.openservices</groupId>
  39. <artifactId>aliyun-log-logback-appender</artifactId>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <!-- 固定包名 避免随着版本变动 -->
  44. <finalName>wx-notice</finalName>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-maven-plugin</artifactId>
  49. <configuration>
  50. <mainClass>com.cybertogether.wx.notice.Application</mainClass>
  51. <layout>ZIP</layout>
  52. </configuration>
  53. <executions>
  54. <execution>
  55. <goals>
  56. <goal>repackage</goal>
  57. </goals>
  58. </execution>
  59. </executions>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>