quartz-oracle
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opensymphony.quartz</groupId> <artifactId>quartz-oracle</artifactId> <version>1.0-test</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.opensymphony.quartz</groupId> <artifactId>quartz-oracle</artifactId> <packaging>jar</packaging> <version>1.0-test</version> <url>https://www.opensymphony.com/quartz</url> <name>quartz-oracle</name> <description>Quartz is an opensource project aimed at creating a free-for-commercial use Job Scheduler, with 'enterprise' features. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Additionally, a copy of the license and its accompanying notice file is included with the distribution. </description> <licenses> <license> <name>Apache License</name> <url>https://github.com/dbahar/opensymphony-quartz-backup/blob/master/license.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>Opensymphony</id> <name>Opensymphony</name> <email>admin@opensymphony.org</email> <organization>Opensymphony</organization> <organizationUrl>http://opensymphony.org/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/dbahar/opensymphony-quartz-backup.git</connection> <developerConnection>scm:git:git://github.com/dbahar/opensymphony-quartz-backup.git</developerConnection> <url>https://github.com/dbahar/opensymphony-quartz-backup</url> <tag>HEAD</tag> </scm> <properties> <java.version>20</java.version> </properties> <build> <sourceDirectory>./src/main/java</sourceDirectory> <testSourceDirectory>./test/java</testSourceDirectory> <testResources> <testResource> <directory>./test/java</directory> <!-- <includes>--> <!-- <include>*.*</include>--> <!-- </includes>--> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>11</source> <target>11</target> <!-- <compilerArgs>--> <!-- <arg>-parameters</arg>--> <!-- </compilerArgs>--> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpg.keyname}</keyname> <passphraseServerId>${gpg.keyname}</passphraseServerId> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.1.2</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <tokenEnabled>true</tokenEnabled> </configuration> </plugin> </plugins> </build> </project>