pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ /*
  4. ~ * Copyright (c) 2019-2020, 冷冷 (wangiegie@gmail.com).
  5. ~ * <p>
  6. ~ * Licensed under the GNU Lesser General Public License 3.0 (the "License");
  7. ~ * you may not use this file except in compliance with the License.
  8. ~ * You may obtain a copy of the License at
  9. ~ * <p>
  10. ~ * https://www.gnu.org/licenses/lgpl.html
  11. ~ * <p>
  12. ~ * Unless required by applicable law or agreed to in writing, software
  13. ~ * distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ * See the License for the specific language governing permissions and
  16. ~ * limitations under the License.
  17. ~ */
  18. -->
  19. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  20. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  21. <modelVersion>4.0.0</modelVersion>
  22. <parent>
  23. <groupId>com.lutao</groupId>
  24. <artifactId>cloud-common</artifactId>
  25. <version>1.0.0</version>
  26. </parent>
  27. <artifactId>cloud-common-job</artifactId>
  28. <packaging>jar</packaging>
  29. <description>cloud 定时任务,基于xxl-job</description>
  30. <dependencies>
  31. <!--xxl job-->
  32. <dependency>
  33. <groupId>com.xuxueli</groupId>
  34. <artifactId>xxl-job-core</artifactId>
  35. <version>${xxl-job.version}</version>
  36. </dependency>
  37. <!--提供服务发现能力-->
  38. <dependency>
  39. <groupId>org.springframework.cloud</groupId>
  40. <artifactId>spring-cloud-commons</artifactId>
  41. </dependency>
  42. </dependencies>
  43. </project>