File: pom.xml

package info (click to toggle)
libquartz-java 1%3A1.8.6-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 3,444 kB
  • sloc: java: 28,881; xml: 1,267; sh: 225; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 832 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?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/maven-v4_0_0.xsd">

  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.quartz-scheduler</groupId>
    <artifactId>quartz-parent</artifactId>
    <version>1.8.6</version>
  </parent>

  <artifactId>quartz-oracle</artifactId>
  <name>quartz-oracle</name>

  <dependencies>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>quartz</artifactId>
    </dependency>
    <dependency>
      <groupId>com.oracle</groupId>
      <artifactId>ojdbc5</artifactId>
      <version>11.2.0</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>