67
by Marcus Eriksson
[maven-release-plugin] prepare release drizzle-jdbc-0.1 |
1 |
<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"> |
30
by Marcus Eriksson
server flag handling using enumset and more parameter support + tests |
2 |
<modelVersion>4.0.0</modelVersion> |
346
by Vladislav Vaintroub
rebranding to mariadb driver |
3 |
<groupId>org.mariadb.jdbc</groupId> |
350
by Vladislav Vaintroub
fix license, project name etc in pom.xml |
4 |
<artifactId>mariadb-java-client</artifactId> |
60
by Marcus Eriksson
fix pom |
5 |
<packaging>jar</packaging> |
350
by Vladislav Vaintroub
fix license, project name etc in pom.xml |
6 |
<name>mariadb-java-client</name> |
507
by Georg Richter
Bumped version number |
7 |
<version>1.1.7</version> |
350
by Vladislav Vaintroub
fix license, project name etc in pom.xml |
8 |
<description>JDBC driver for MariaDB and MySQL</description> |
455
by Vladislav Vaintroub
add <scm> elements into pom.xml, add back javadoc |
9 |
<url>https://kb.askmonty.org/en/about-the-mariadb-java-client/</url> |
155.2.1
by Marcus Eriksson
set default encoding |
10 |
<properties>
|
11 |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
457
by Vladislav Vaintroub
CONJ-50 : implement support unix domain socket |
12 |
<jna.version>3.3.0</jna.version> |
155.2.1
by Marcus Eriksson
set default encoding |
13 |
</properties>
|
60
by Marcus Eriksson
fix pom |
14 |
<licenses>
|
15 |
<license>
|
|
350
by Vladislav Vaintroub
fix license, project name etc in pom.xml |
16 |
<name>LGPL-2.1</name> |
60
by Marcus Eriksson
fix pom |
17 |
</license>
|
18 |
</licenses>
|
|
455
by Vladislav Vaintroub
add <scm> elements into pom.xml, add back javadoc |
19 |
<scm>
|
20 |
<connection>scm:bazaar:http://bazaar.launchpad.net/+branch/mariadb-java-client</connection> |
|
21 |
<url>http://bazaar.launchpad.net/+branch/mariadb-java-client</url> |
|
22 |
<developerConnection>scm:bazaar:sftp://bazaar.launchpad.net/+branch/mariadb-java-client</developerConnection> |
|
23 |
</scm>
|
|
63
by Marcus Eriksson
pom updates for central repo upload |
24 |
<issueManagement>
|
25 |
<system>Launchpad</system> |
|
350
by Vladislav Vaintroub
fix license, project name etc in pom.xml |
26 |
<url>http://bugs.launchpad.net/mariadb-java-client/</url> |
63
by Marcus Eriksson
pom updates for central repo upload |
27 |
</issueManagement>
|
456
by Vladislav Vaintroub
added developers element to pom.xml |
28 |
<developers>
|
29 |
<developer>
|
|
30 |
<id>wlad</id> |
|
31 |
<name>Vladislav Vaintroub</name> |
|
32 |
<email>wlad@montyprogram.com</email> |
|
33 |
</developer>
|
|
507
by Georg Richter
Bumped version number |
34 |
<developer>
|
35 |
<id>massimo</id> |
|
36 |
<name>Massimo Siani</name> |
|
37 |
<email>massimo.siani@skysql.com</email> |
|
38 |
</developer>
|
|
39 |
<developer>
|
|
40 |
<id>georg</id> |
|
41 |
<name>Georg Richter</name> |
|
42 |
<email>georg@skysql.com</email> |
|
43 |
</developer>
|
|
456
by Vladislav Vaintroub
added developers element to pom.xml |
44 |
</developers>
|
429
by Vladislav Vaintroub
Add build script to bazaar repository |
45 |
<profiles><profile>
|
46 |
<id>package-source</id> |
|
47 |
<activation><property><name>package-source</name></property></activation> |
|
48 |
<build><plugins><plugin>
|
|
49 |
||
50 |
<groupId>org.codehaus.mojo</groupId> |
|
51 |
<artifactId>exec-maven-plugin</artifactId> |
|
52 |
<version>1.2</version> |
|
53 |
<configuration>
|
|
54 |
<executable>bzr</executable> |
|
55 |
<arguments>
|
|
56 |
<argument>export</argument> |
|
57 |
<argument>${pom.name}-${pom.version}.tar.gz</argument> |
|
58 |
</arguments>
|
|
59 |
</configuration>
|
|
60 |
</plugin></plugins></build>
|
|
61 |
</profile></profiles>
|
|
62 |
||
30
by Marcus Eriksson
server flag handling using enumset and more parameter support + tests |
63 |
<build>
|
64 |
<plugins>
|
|
65 |
<plugin>
|
|
66 |
<groupId>org.apache.maven.plugins</groupId> |
|
67 |
<artifactId>maven-compiler-plugin</artifactId> |
|
68 |
<configuration>
|
|
380
by Vladislav Vaintroub
Build : compile for Java6. remove unused dependency on mockito |
69 |
<source>1.6</source> |
70 |
<target>1.6</target> |
|
30
by Marcus Eriksson
server flag handling using enumset and more parameter support + tests |
71 |
</configuration>
|
72 |
</plugin>
|
|
73 |
<plugin>
|
|
366
by Vladislav Vaintroub
MDEV-3919 : generate custom MANIFEST.MF to satisfy OSGi rules |
74 |
<groupId>org.apache.maven.plugins</groupId> |
75 |
<artifactId>maven-jar-plugin</artifactId> |
|
76 |
<configuration>
|
|
77 |
<archive>
|
|
78 |
<!-- manifestFile entry seems to be required to do any tweaking -->
|
|
79 |
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile> |
|
80 |
<manifestEntries>
|
|
81 |
<Bundle-Version>${pom.version}.0</Bundle-Version> |
|
82 |
<Bundle-ManifestVersion>2</Bundle-ManifestVersion> |
|
83 |
<Bundle-Name>MariaDB JDBC Client</Bundle-Name> |
|
84 |
<Bundle-SymbolicName>org.mariadb.jdbc</Bundle-SymbolicName> |
|
85 |
<Export-Package>org.mariadb.jdbc </Export-Package> |
|
86 |
<Import-Package>javax.net;resolution:=optional,javax.net.ssl;resolution:=optional,javax.sql;resolution:=optional,javax.transaction.xa;resolution:=optional</Import-Package> |
|
87 |
</manifestEntries>
|
|
88 |
</archive>
|
|
89 |
</configuration>
|
|
90 |
</plugin>
|
|
91 |
<plugin>
|
|
30
by Marcus Eriksson
server flag handling using enumset and more parameter support + tests |
92 |
<groupId>org.apache.maven.plugins</groupId> |
93 |
<artifactId>maven-surefire-plugin</artifactId> |
|
441
by Vladislav Vaintroub
update version of surefire plugin in pom.xml, to be able to run single test |
94 |
<version>2.12.4</version> |
30
by Marcus Eriksson
server flag handling using enumset and more parameter support + tests |
95 |
</plugin>
|
468
by Vladislav Vaintroub
Disable gpg signing maven plugin |
96 |
<!--
|
129
by Marcus Eriksson
cleanup .. |
97 |
<plugin>
|
98 |
<groupId>org.apache.maven.plugins</groupId>
|
|
99 |
<artifactId>maven-gpg-plugin</artifactId>
|
|
100 |
<executions>
|
|
101 |
<execution>
|
|
102 |
<id>sign-artifacts</id>
|
|
103 |
<phase>verify</phase>
|
|
104 |
<goals>
|
|
105 |
<goal>sign</goal>
|
|
106 |
</goals>
|
|
107 |
</execution>
|
|
108 |
</executions>
|
|
155.1.4
by Marcus Eriksson
remove cobertura |
109 |
</plugin>
|
468
by Vladislav Vaintroub
Disable gpg signing maven plugin |
110 |
-->
|
155.1.6
by Marcus Eriksson
add clover stuff |
111 |
<plugin>
|
112 |
<groupId>com.atlassian.maven.plugins</groupId> |
|
113 |
<artifactId>maven-clover2-plugin</artifactId> |
|
114 |
<configuration>
|
|
115 |
<licenseLocation>/etc/clover.license</licenseLocation> |
|
116 |
</configuration>
|
|
117 |
</plugin>
|
|
234
by Marcus Eriksson
generate sources and javadocs |
118 |
<plugin>
|
119 |
<groupId>org.apache.maven.plugins</groupId> |
|
120 |
<artifactId>maven-source-plugin</artifactId> |
|
121 |
<executions>
|
|
122 |
<execution>
|
|
123 |
<goals>
|
|
124 |
<goal>jar</goal> |
|
125 |
</goals>
|
|
126 |
</execution>
|
|
127 |
</executions>
|
|
128 |
</plugin>
|
|
455
by Vladislav Vaintroub
add <scm> elements into pom.xml, add back javadoc |
129 |
<plugin>
|
130 |
<groupId>org.apache.maven.plugins</groupId> |
|
131 |
<artifactId>maven-javadoc-plugin</artifactId> |
|
132 |
<executions>
|
|
133 |
<execution>
|
|
134 |
<id>attach-javadocs</id> |
|
135 |
<goals>
|
|
136 |
<goal>jar</goal> |
|
137 |
</goals>
|
|
138 |
</execution>
|
|
139 |
</executions>
|
|
140 |
</plugin>
|
|
30
by Marcus Eriksson
server flag handling using enumset and more parameter support + tests |
141 |
</plugins>
|
142 |
</build>
|
|
429
by Vladislav Vaintroub
Add build script to bazaar repository |
143 |
|
30
by Marcus Eriksson
server flag handling using enumset and more parameter support + tests |
144 |
<dependencies>
|
145 |
<dependency>
|
|
146 |
<groupId>junit</groupId> |
|
147 |
<artifactId>junit</artifactId> |
|
126
by Marcus Eriksson
upgrade to junit 5.6 |
148 |
<version>4.6</version> |
30
by Marcus Eriksson
server flag handling using enumset and more parameter support + tests |
149 |
<scope>test</scope> |
150 |
</dependency>
|
|
457
by Vladislav Vaintroub
CONJ-50 : implement support unix domain socket |
151 |
<dependency>
|
152 |
<groupId>net.java.dev.jna</groupId> |
|
153 |
<artifactId>jna</artifactId> |
|
154 |
<version>${jna.version}</version> |
|
155 |
</dependency>
|
|
156 |
<dependency>
|
|
157 |
<groupId>net.java.dev.jna</groupId> |
|
158 |
<artifactId>jna</artifactId> |
|
159 |
<version>${jna.version}</version> |
|
160 |
<classifier>platform</classifier> |
|
161 |
</dependency>
|
|
520.2.1
by Massimo Siani
Revert CONJ-89 |
162 |
<dependency>
|
163 |
<groupId>commons-dbcp</groupId> |
|
164 |
<artifactId>commons-dbcp</artifactId> |
|
165 |
<version>1.4</version> |
|
166 |
</dependency>
|
|
2
by Marcus Eriksson
add tests and some classes |
167 |
</dependencies>
|
30
by Marcus Eriksson
server flag handling using enumset and more parameter support + tests |
168 |
<reporting>
|
169 |
<plugins>
|
|
155.1.7
by Marcus Eriksson
add clover to reporting |
170 |
<plugin>
|
171 |
<groupId>org.apache.maven.plugins</groupId> |
|
172 |
<artifactId>maven-clover-plugin</artifactId> |
|
173 |
<configuration>
|
|
174 |
<licenseLocation>/etc/clover.license</licenseLocation> |
|
175 |
</configuration>
|
|
176 |
</plugin>
|
|
166
by Marcus Eriksson
generate xml report for findbugs |
177 |
<plugin>
|
178 |
<groupId>org.apache.maven.plugins</groupId> |
|
179 |
<artifactId>maven-checkstyle-plugin</artifactId> |
|
180 |
<configuration>
|
|
346
by Vladislav Vaintroub
rebranding to mariadb driver |
181 |
<configLocation>mariadb-jdbc-checks.xml</configLocation> |
166
by Marcus Eriksson
generate xml report for findbugs |
182 |
</configuration>
|
183 |
</plugin>
|
|
113
by Marcus Eriksson
start using checkstyle and remove ugly code |
184 |
<plugin>
|
185 |
<groupId>org.apache.maven.plugins</groupId> |
|
186 |
<artifactId>maven-javadoc-plugin</artifactId> |
|
187 |
</plugin>
|
|
188 |
<plugin>
|
|
189 |
<groupId>org.apache.maven.plugins</groupId> |
|
190 |
<artifactId>maven-pmd-plugin</artifactId> |
|
155.1.1
by Marcus Eriksson
add findbugs report |
191 |
<configuration>
|
192 |
<sourceEncoding>utf-8</sourceEncoding> |
|
193 |
<minimumTokens>100</minimumTokens> |
|
194 |
<targetJdk>1.6</targetJdk> |
|
195 |
</configuration>
|
|
113
by Marcus Eriksson
start using checkstyle and remove ugly code |
196 |
</plugin>
|
197 |
<plugin>
|
|
198 |
<groupId>org.apache.maven.plugins</groupId> |
|
199 |
<artifactId>maven-surefire-report-plugin</artifactId> |
|
200 |
</plugin>
|
|
155.1.1
by Marcus Eriksson
add findbugs report |
201 |
<plugin>
|
202 |
<groupId>org.codehaus.mojo</groupId> |
|
203 |
<artifactId>findbugs-maven-plugin</artifactId> |
|
204 |
<version>2.1</version> |
|
166
by Marcus Eriksson
generate xml report for findbugs |
205 |
<configuration>
|
206 |
<xmlOutput>true</xmlOutput> |
|
207 |
</configuration>
|
|
155.1.1
by Marcus Eriksson
add findbugs report |
208 |
</plugin>
|
427
by Vladislav Vaintroub
POM target to create tarball |
209 |
|
30
by Marcus Eriksson
server flag handling using enumset and more parameter support + tests |
210 |
</plugins>
|
211 |
</reporting>
|
|
223
by Marcus Eriksson
update pom for sonatype repos |
212 |
<parent>
|
213 |
<groupId>org.sonatype.oss</groupId> |
|
214 |
<artifactId>oss-parent</artifactId> |
|
215 |
<version>6</version> |
|
216 |
</parent>
|
|
1
by Marcus Eriksson
project structure |
217 |
</project>
|