This repository has been archived by the owner on Feb 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
103 lines (97 loc) · 4.62 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
<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>
<parent>
<groupId>org.postgresql</groupId>
<artifactId>pgjdbc-core-prevjre</artifactId>
<version>1.1.5</version>
<relativePath /><!-- do not print maven warnings when pgjdbc-jre7 is checked out under pgjdbc -->
</parent>
<artifactId>postgresql</artifactId>
<packaging>bundle</packaging>
<name>PostgreSQL JDBC Driver - JDBC 4.0</name>
<version>42.2.13.jre6-SNAPSHOT</version>
<description>Java JDBC 4.0 (JRE 6+) driver for PostgreSQL database</description>
<properties>
<javac.target>1.6</javac.target>
<postgresql.enforce.jdk.version>[1.6,1.7)</postgresql.enforce.jdk.version>
<jdbc.specification.version>4.0</jdbc.specification.version>
<jdbc.specification.version.nodot>40</jdbc.specification.version.nodot>
<skip.assembly>false</skip.assembly>
<skip.unzip-jdk-src>false</skip.unzip-jdk-src>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>remove-future-jre-sources</id>
<configuration>
<filesets>
<fileset>
<directory>${postgresql.preprocessed.sources.directory}</directory>
<includes>
<include>**/jre7/</include>
<include>**/jdbc41/</include>
<include>**/jre8/</include>
<include>**/jdbc42/</include>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</execution>
<execution>
<id>remove-future-jre-test-sources</id>
<configuration>
<filesets>
<fileset>
<directory>${postgresql.preprocessed.test.sources.directory}</directory>
<includes>
<include>**/jre7/</include>
<include>**/jdbc41/</include>
<include>**/jre8/</include>
<include>**/jdbc42/</include>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<!-- If inherited from parent pom, maven tries to add artifactId to URLs -->
<scm>
<url>https://github.com/pgjdbc/pgjdbc-jre6</url>
<connection>scm:git:https://github.com/pgjdbc/pgjdbc-jre6.git</connection>
<developerConnection>scm:git:[email protected]:pgjdbc/pgjdbc-jre6.git</developerConnection>
<tag>HEAD</tag>
</scm>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Not everybody has jdk6 sources :( JavaDocs for java.sql implemented interfaces would be empty -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>unzip-jdk-src</id>
<goals>
<goal>exec</goal>
</goals>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>