pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <!-- 父类定义 -->
  5. <parent>
  6. <groupId>com.iamberry</groupId>
  7. <artifactId>iamberry-parent</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <!-- 微信的业务模块 -->
  11. <artifactId>iamberry-wechat-service</artifactId>
  12. <!-- 依赖 -->
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.iamberry</groupId>
  16. <artifactId>iamberry-wechat-interface</artifactId>
  17. <version>1.0.0</version>
  18. </dependency>
  19. <!-- 公共接口 -->
  20. <dependency>
  21. <groupId>com.iamberry</groupId>
  22. <artifactId>iamberry-common-tool</artifactId>
  23. <version>1.0.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter</artifactId>
  28. <exclusions>
  29. <exclusion>
  30. <artifactId>log4j-over-slf4j</artifactId>
  31. <groupId>org.slf4j</groupId>
  32. </exclusion>
  33. <exclusion>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-logging</artifactId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.quartz-scheduler</groupId>
  41. <artifactId>quartz</artifactId>
  42. <version>2.2.1</version>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <finalName>iamberry-wechat-service</finalName>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-maven-plugin</artifactId>
  51. <version>1.4.1.BUILD-SNAPSHOT</version>
  52. <executions>
  53. <execution>
  54. <goals>
  55. <goal>repackage</goal>
  56. </goals>
  57. </execution>
  58. </executions>
  59. <configuration>
  60. <mainClass>com.iamberry.service.start.InitApp</mainClass>
  61. <layout>JAR</layout>
  62. <addResources>true</addResources>
  63. </configuration>
  64. </plugin>
  65. <plugin>
  66. <groupId>org.apache.maven.plugins</groupId>
  67. <artifactId>maven-compiler-plugin</artifactId>
  68. <version>3.3</version>
  69. <configuration>
  70. <source>1.7</source>
  71. <target>1.7</target>
  72. </configuration>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>