This repository has been archived by the owner on May 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
159 lines (144 loc) · 5.92 KB
/
pom.xml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed under the GPL License. You may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
PURPOSE.
-->
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.hazendaz</groupId>
<artifactId>base-parent</artifactId>
<version>39</version>
<relativePath />
</parent>
<groupId>com.github.psi-probe</groupId>
<artifactId>psi-probe-ojdbc</artifactId>
<version>3.1.10-SNAPSHOT</version>
<name>psi-probe-ojdbc</name>
<description>
PSI Probe Ojdbc - License Restricted Oracle JDBC Driver Module
</description>
<url>https://github.com/psi-probe/psi-probe-ojdbc/</url>
<inceptionYear>2009</inceptionYear>
<organization>
<name>psi-probe</name>
<url>https://github.com/psi-probe/</url>
</organization>
<licenses>
<license>
<name>GNU General Public License, version 2</name>
<url>https://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url>
<distribution>manual</distribution>
</license>
</licenses>
<mailingLists>
<mailingList>
<name>PSI Probe Announcements</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<archive>https://groups.google.com/forum/#!forum/psi-probe</archive>
</mailingList>
<mailingList>
<name>PSI Probe Discussions</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<post>[email protected]</post>
<archive>https://groups.google.com/forum/#!forum/psi-probe-discuss</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:git:ssh://[email protected]/psi-probe/psi-probe-ojdbc.git</connection>
<developerConnection>scm:git:ssh://[email protected]/psi-probe/psi-probe-ojdbc.git</developerConnection>
<url>https://github.com/psi-probe/psi-probe-ojdbc/</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/psi-probe/psi-probe-ojdbc/issues/</url>
</issueManagement>
<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/psi-probe/psi-probe-ojdbc/actions/</url>
</ciManagement>
<distributionManagement>
<site>
<id>gh-pages-scm</id>
<name>Psi-Probe-Ojdbc GitHub Pages</name>
<url>scm:git:ssh://[email protected]/psi-probe/psi-probe-ojdbc.git</url>
</site>
</distributionManagement>
<properties>
<!-- Dependencies -->
<c3p0.version>0.9.5.5</c3p0.version>
<javabean-tester.version>2.5.3</javabean-tester.version>
<jmockit.version>1.50.0</jmockit.version>
<junit.version>5.9.3</junit.version>
<ojdbc.version>19.18.0.0</ojdbc.version>
<servlet.version>4.0.4</servlet.version>
<ucp.version>19.18.0.0</ucp.version>
<!-- Surefire argLine -->
<argLine>-javaagent:${settings.localRepository}/com/github/hazendaz/jmockit/jmockit/${jmockit.version}/jmockit-${jmockit.version}.jar -Djdk.attach.allowAttachSelf</argLine>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>${servlet.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ucp</artifactId>
<version>${ucp.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
<version>${ojdbc.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.hazendaz.jmockit</groupId>
<artifactId>jmockit</artifactId>
<version>${jmockit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.hazendaz</groupId>
<artifactId>javabean-tester</artifactId>
<version>${javabean-tester.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
<version>${c3p0.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<!-- TODO: pdf fails on site so skip it at this time -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pdf-plugin</artifactId>
<configuration>
<includeReports>false</includeReports>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>