jamesfredley commented on PR #162: URL: https://github.com/apache/grails-quartz/pull/162#issuecomment-3362424707
``` <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.grails</groupId> <artifactId>grails-quartz</artifactId> <version>4.0.0-SNAPSHOT</version> <name>Grails Quartz Plugin</name> <description>This plugin allows your Grails application to schedule jobs to be executed using a specified interval or cron expression.</description> <url>https://github.com/apache/grails-quartz</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>burtbeckwith</id> <name>Burt Beckwith</name> </developer> <developer> <id>jeffscottbrown</id> <name>Jeff Scott Brown</name> </developer> <developer> <id>graemerocher</id> <name>Graeme Rocher</name> </developer> <developer> <id>ryanvanderwerf</id> <name>Ryan Vanderwerf</name> </developer> <developer> <id>sergeynebolsin</id> <name>Sergey Nebolsin</name> </developer> <developer> <id>puneetbehl</id> <name>Puneet Behl</name> </developer> <developer> <id>vitaliisamolovskikh</id> <name>Vitalii Samolovskikh</name> </developer> </developers> <scm> <connection>scm:[email protected]:apache/grails-quartz.git</connection> <developerConnection>scm:[email protected]:apache/grails-quartz.git</developerConnection> <url>https://github.com/apache/grails-quartz</url> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/apache/grails-quartz/issues</url> </issueManagement> <dependencies> <dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz</artifactId> <version>2.5.0</version> <scope>compile</scope> </dependency> </dependencies> </project> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
