pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.jeeplus</groupId>
  7. <artifactId>jeeplus-plugins</artifactId>
  8. <version>9.0</version>
  9. </parent>
  10. <artifactId>jeeplus-notify</artifactId>
  11. <packaging>jar</packaging>
  12. <name>jeeplus-notify</name>
  13. <description>notify project for jeeplus</description>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.jeeplus</groupId>
  22. <artifactId>jeeplus-admin</artifactId>
  23. <version>${project.parent.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.jeeplus</groupId>
  27. <artifactId>jeeplus-test</artifactId>
  28. <version>9.0</version>
  29. <scope>compile</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.jeeplus</groupId>
  33. <artifactId>jeeplus-quartz</artifactId>
  34. <version>9.0</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. </dependencies>
  38. </project>