pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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>watero-wechat-service</artifactId>
  12. <!-- 依赖 -->
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.iamberry</groupId>
  16. <artifactId>watero-wechat-interface</artifactId>
  17. <version>1.0.0</version>
  18. </dependency>
  19. <!-- 公共接口 -->
  20. <dependency>
  21. <groupId>com.iamberry</groupId>
  22. <artifactId>watero-common-tool</artifactId>
  23. <version>1.0.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.quartz-scheduler</groupId>
  27. <artifactId>quartz</artifactId>
  28. <version>2.2.1</version>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <resources>
  33. <resource>
  34. <directory>src/main/java</directory>
  35. <includes>
  36. <include>**/*.properties</include>
  37. <include>**/*.xml</include>
  38. </includes>
  39. <filtering>false</filtering>
  40. </resource>
  41. </resources>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-compiler-plugin</artifactId>
  46. <version>3.3</version>
  47. <configuration>
  48. <source>1.7</source>
  49. <target>1.7</target>
  50. </configuration>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. </project>