pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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>sz_hn</artifactId>
  7. <groupId>com.leisp</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>leisp-quartz</artifactId>
  12. <description>
  13. quartz定时任务
  14. </description>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-compiler-plugin</artifactId>
  20. <configuration>
  21. <source>7</source>
  22. <target>7</target>
  23. </configuration>
  24. </plugin>
  25. </plugins>
  26. </build>
  27. <dependencies>
  28. <!-- 定时任务 -->
  29. <dependency>
  30. <groupId>org.quartz-scheduler</groupId>
  31. <artifactId>quartz</artifactId>
  32. <exclusions>
  33. <exclusion>
  34. <groupId>com.mchange</groupId>
  35. <artifactId>c3p0</artifactId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <!-- 通用工具-->
  40. <dependency>
  41. <groupId>com.leisp</groupId>
  42. <artifactId>leisp-common</artifactId>
  43. </dependency>
  44. </dependencies>
  45. </project>