1d812dc
7a73c82
Summary:       Official JDBC driver for MySQL
7a73c82
Name:          mysql-connector-java
3e36d16
Version:       8.0.16
e1db712
Release:       1%{?dist}
7a73c82
Epoch:         1
7a73c82
License:       GPLv2 with exceptions
7a73c82
URL:           http://dev.mysql.com/downloads/connector/j/
7a73c82
Source0:       %{name}-%{version}-nojars.tar.xz
1d812dc
799cd1a
# Mysql has a mirror redirector for its downloads
799cd1a
# You can get this tarball by following a link from:
7a73c82
# http://dev.mysql.com/get/Downloads/Connector-J/%%{name}-%%{version}.tar.gz
799cd1a
#
0b405a4
# OR
0b405a4
# https://github.com/mysql/mysql-connector-j/archive/%%{version}.tar.gz
Milos Jakubicek 3d00a4e
# Following prebuilt jars and sources have been removed from the tarball:
Igor Foox 1678fab
#
7a73c82
# %%{name}-%%{version}-bin.jar
810021c
# lib/c3p0-0.9.1-pre6.jar
810021c
# lib/c3p0-0.9.1-pre6.src.zip
810021c
# lib/jboss-common-jdbc-wrapper.jar
810021c
# lib/jboss-common-jdbc-wrapper-src.jar
e1db712
# lib/protobuf-java-3.6.1.jar
810021c
# lib/slf4j-api-1.6.1.jar
799cd1a
#
799cd1a
# See http://bugs.mysql.com/bug.php?id=28512 for details.
a1b9386
a1b9386
# To make it easier a script generate-tarball.sh has been created:
a1b9386
# ./generate-tarball.sh version
a1b9386
# will create a new tarball compressed with xz and without those jar files.
7a73c82
Source1:       generate-tarball.sh
810021c
Patch3:        java-version-detection.patch
810021c
Patch4:        remove-coverage-test.patch
7a73c82
7a73c82
BuildArch:     noarch
7a73c82
7a73c82
BuildRequires: ant >= 1.6.0
7a73c82
BuildRequires: ant-contrib >= 1.0
810021c
BuildRequires: ant-junit
0b405a4
BuildRequires: apache-commons-logging
7a73c82
BuildRequires: c3p0
0b405a4
BuildRequires: git
0b405a4
BuildRequires: hibernate-core
0b405a4
BuildRequires: java-devel >= 1:1.6.0
7a73c82
BuildRequires: javapackages-local
7a73c82
BuildRequires: jta >= 1.0
7a73c82
BuildRequires: junit
810021c
BuildRequires: protobuf-java
7a73c82
BuildRequires: slf4j
7a73c82
7a73c82
Requires:      jta >= 1.0
7a73c82
Requires:      slf4j
ea9308d
Igor Foox 1678fab
%description
Igor Foox 1678fab
MySQL Connector/J is a native Java driver that converts JDBC (Java Database
Igor Foox 1678fab
Connectivity) calls into the network protocol used by the MySQL database.
Igor Foox 1678fab
It lets developers working with the Java programming language easily build
Igor Foox 1678fab
programs and applets that interact with MySQL and connect all corporate
Igor Foox 1678fab
data, even in a heterogeneous environment. MySQL Connector/J is a Type
Igor Foox 1678fab
IV JDBC driver and has a complete JDBC feature set that supports the
Igor Foox 1678fab
capabilities of MySQL.
Igor Foox 1678fab
Igor Foox 1678fab
%prep
6c218cf
%setup -q -n mysql-connector-j-%{version}
Igor Foox 1678fab
Igor Foox 1678fab
# fix line endings
0b405a4
for file in README README.md; do
0b405a4
 sed -i.orig 's|\r||g' $file
0b405a4
 touch -r $file.orig $file
0b405a4
 rm $file.orig
0b405a4
done
Igor Foox 1678fab
810021c
sed -i 's/>@.*%{version}</' src/build/misc/pom.xml
62051d4
3e36d16
#%%patch3 -p1
810021c
%patch4 -p1
02d2870
Igor Foox 1678fab
%build
799cd1a
799cd1a
# We need both JDK1.5 (for JDBC3.0; appointed by $JAVA_HOME) and JDK1.6 (for JDBC4.0; appointed in the build.xml)
Milos Jakubicek 5799ee1
export CLASSPATH=$(build-classpath jdbc-stdext jta junit slf4j commons-logging.jar)
799cd1a
799cd1a
# We currently need to disable jboss integration because of missing jboss-common-jdbc-wrapper.jar (built from sources).
799cd1a
# See BZ#480154 and BZ#471915 for details.
810021c
rm -rf src/main/user-impl/java/com/mysql/cj/jdbc/integration/jboss
810021c
rm src/test/java/testsuite/regression/ConnectionRegressionTest.java
810021c
rm src/test/java/testsuite/regression/DataSourceRegressionTest.java
810021c
rm src/test/java/testsuite/simple/StatementsTest.java
810021c
810021c
ant -Dcom.mysql.cj.build.jdk=%{java_home} \
810021c
    -Dcom.mysql.cj.extra.libs=/usr/share/java \
810021c
    test dist
799cd1a
Igor Foox 1678fab
%install
ea9308d
# Install the Maven build information
62051d4
%mvn_file mysql:mysql-connector-java %{name}
810021c
%mvn_artifact src/build/misc/pom.xml build/%{name}-%{version}-SNAPSHOT/%{name}-%{version}-SNAPSHOT.jar
62051d4
%mvn_install
ea9308d
62051d4
%files -f .mfiles
0b405a4
%doc CHANGES README README.md
810021c
%license LICENSE
Igor Foox 1678fab
Igor Foox 1678fab
%changelog
3e36d16
* Mon May 06 2019 Jakub Janco <jjanco@redhat.com> - 1:8.0.16-1
3e36d16
- new version
3e36d16
e1db712
* Fri Feb 22 2019 Jakub Janco <jjanco@redhat.com> - 1:8.0.15-1
e1db712
- new version
e1db712
a2f0fff
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:8.0.13-2
a2f0fff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
a2f0fff
d20a958
* Mon Oct 22 2018 Jakub Janco <jjanco@redhat.com> - 1:8.0.13-1
d20a958
- Update to 8.0.13
d20a958
6caf0d8
* Tue Aug 07 2018 Jakub Janco <jjanco@redhat.com> - 1:8.0.12-1
6caf0d8
- new version
6caf0d8
27708b5
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.1.38-7
27708b5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
27708b5
ea20e41
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.1.38-6
ea20e41
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
ea20e41
b6ec519
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.1.38-5
b6ec519
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b6ec519
41a83b0
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.1.38-4
41a83b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
41a83b0
23626e0
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.1.38-3
23626e0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
23626e0
0fc7d71
* Tue Dec 08 2015 gil cattaneo <puntogil@libero.it> 1:5.1.38-2
0fc7d71
- fix jdbc-4.1 patch
0fc7d71
0b405a4
* Tue Dec 08 2015 gil cattaneo <puntogil@libero.it> 1:5.1.38-1
0b405a4
- update to 5.1.38
0b405a4
- use upstream git tarball
0b405a4
7a73c82
* Fri Oct 16 2015 gil cattaneo <puntogil@libero.it> 1:5.1.37-1
7a73c82
- update to 5.1.37
7a73c82
Jakub Dorňák c25d906
* Thu Jun 25 2015 Jakub Dorňák <jdornak@redhat.com> - 1:5.1.36-1
Jakub Dorňák c25d906
- Rebase to version 5.1.36
Jakub Dorňák c25d906
  Resolves rhbz#1061093
Jakub Dorňák c25d906
62051d4
* Sat Jun 20 2015 gil cattaneo <puntogil@libero.it> 1:5.1.28-6
62051d4
- Fix FTBFS: rhbz#1106256
62051d4
- adapt to current guideline
62051d4
e0499e4
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:5.1.28-5
e0499e4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
e0499e4
12bdcfd
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:5.1.28-4
12bdcfd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
12bdcfd
87fa7f4
* Wed Apr 23 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 1:5.1.28-3
87fa7f4
- Add explicit requires on java-headless
87fa7f4
- Resolves: rhbz#1068431
87fa7f4
48aed84
* Fri Mar 28 2014 Michael Simacek <msimacek@redhat.com> - 1:5.1.28-2
48aed84
- Use Requires: java-headless rebuild (#1067528)
48aed84
9fde117
* Thu Jan 23 2014 Jakub Dorňák <jdornak@redhat.com> - 1:5.1.28-1
9fde117
- Update to 5.1.28
9fde117
- fix generate-tarball.sh to also remove .zip files
9fde117
  Resolves: #1049223
9fde117
3850161
* Mon Nov  4 2013 Honza Horak <hhorak@redhat.com> - 1:5.1.26-3
3850161
- Remove unnecessary buildroot erase
3850161
a1b9386
* Thu Oct 24 2013 Honza Horak <hhorak@redhat.com> - 1:5.1.26-2
a1b9386
- Clean-up of the spec file, including gcj support
a1b9386
- Remove jar files from the tar ball
a1b9386
43a93da
* Wed Oct 23 2013 Honza Horak <hhorak@redhat.com> - 1:5.1.26-1
43a93da
- Update to 5.1.26
9fde117
- Remove versioned jars
011ee30
  Resolves: #1022144
43a93da
1905c72
* Mon Aug 12 2013 Alexander Kurtakov <akurtako@redhat.com> 1:5.1.25-3
1905c72
- Fix FTBFS.
1905c72
ea9fdac
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:5.1.25-2
ea9fdac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
ea9fdac
e8e90d0
* Tue Jun 25 2013 Honza Horak <hhorak@redhat.com> - 1:5.1.25-1
e8e90d0
- Update to 5.1.25
e8e90d0
185abac
* Mon Apr  8 2013 Honza Horak <hhorak@redhat.com> - 1:5.1.24-1
185abac
- Update to 5.1.24
185abac
49a0210
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:5.1.22-2
49a0210
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
49a0210
Milos Jakubicek f63a713
* Tue Sep 11 2012 Miloš Jakubíček <xjakub@fi.muni.cz> - 1:5.1.22-1
Milos Jakubicek f63a713
- Update to 5.1.22
Milos Jakubicek f63a713
36dfc9e
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:5.1.21-3
36dfc9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
36dfc9e
Milos Jakubicek 8f881df
* Tue Jul 10 2012 Miloš Jakubíček <xjakub@fi.muni.cz> - 1:5.1.21-2
Milos Jakubicek 8f881df
- More fuzz for mysql-connector-java-jdbc-4.1.patch
Milos Jakubicek 8f881df
Milos Jakubicek 23a0c28
* Tue Jul 10 2012 Miloš Jakubíček <xjakub@fi.muni.cz> - 1:5.1.21-1
Milos Jakubicek 23a0c28
- Update to 5.1.21
Milos Jakubicek 23a0c28
Tom Lane fdabe1c
* Sat May  5 2012 Tom Lane <tgl@redhat.com> 1:5.1.17-5
Tom Lane fdabe1c
- Switch to noarch (non-GCJ) build
Tom Lane fdabe1c
Resolves: #688937, #819139
Tom Lane fdabe1c
- Fix mysql-connector-java-jdbc-4.1.patch to cover both driver classes
Tom Lane fdabe1c
Related: #816696
Tom Lane fdabe1c
55b3183
* Wed Jan 25 2012 Deepak Bhole <dbhole@redhat.com> - 1:5.1.17-4
55b3183
- Removed java-1.6.0-openjdk-devel requirement
55b3183
02d2870
* Wed Jan 25 2012 Deepak Bhole <dbhole@redhat.com> - 1:5.1.17-3
02d2870
- Added patch to support build with JDBC 4.1/Java 7
02d2870
ceebe57
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:5.1.17-2
ceebe57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
ceebe57
Milos Jakubicek 3d00a4e
* Sat Aug 20 2011 Miloš Jakubíček <xjakub@fi.muni.cz> - 1:5.1.17-1
Milos Jakubicek 3d00a4e
- Update to 5.1.17
Milos Jakubicek 3d00a4e
Milos Jakubicek 5799ee1
* Thu Feb 10 2011 Miloš Jakubíček <xjakub@fi.muni.cz> - 1:5.1.15-1
Milos Jakubicek 5799ee1
- Update to 5.1.15, fix BZ#676464, changed BR: log4j to BR: slf4j
Milos Jakubicek 5799ee1
a0d1411
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:5.1.14-2
a0d1411
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
a0d1411
Milos Jakubicek 5161b82
* Tue Jan 18 2011 Milos Jakubicek <xjakub@fi.muni.cz> - 1:5.1.14-1
Milos Jakubicek 5161b82
- Update to 5.1.14
Milos Jakubicek 5161b82
Milos Jakubicek 5161b82
* Fri Feb 19 2010 Milos Jakubicek <xjakub@fi.muni.cz> - 1:5.1.12-1
a1973a8
- Update to 5.1.12
a1973a8
fef6b6f
* Fri Jan 29 2010 Milos Jakubicek <xjakub@fi.muni.cz> 1:5.1.11-1
fef6b6f
- Update to 5.1.11
fef6b6f
1d812dc
* Thu Jan 21 2010 Tom Lane <tgl@redhat.com> 1:5.1.8-3
1d812dc
- Clean up rpmlint complaints (/usr/lib/ references, old provides/obsoletes,
1d812dc
  tab usage)
1d812dc
ea9308d
* Fri Dec  4 2009 Mary Ellen Foster <mefoster at gmail.com> - 1:5.1.8-2
ea9308d
- Add Maven POM and depmap fragment
ea9308d
52263db
* Wed Aug 26 2009 Milos Jakubicek <xjakub@fi.muni.cz> - 1:5.1.8-1
799cd1a
- Update to 5.1.8 (resolves BZ#480154) with jboss integration disabled.
64c0625
- Added BR: java-1.6.0-openjdk-devel, java-1.5.0-gcj-devel, jakarta-commons-logging
799cd1a
- Minor spec file updates: %%global instead of %%define, tabs instead of spaces
799cd1a
- Dropped unnecessary patch-build.xml and mysql-connector-java-noSunAppletSecurity.patch
799cd1a
cc89da5
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.1.12-8
cc89da5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
cc89da5
43fc251
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.1.12-7
43fc251
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
43fc251
799cd1a
* Mon Aug 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1:3.1.12-6
26c18f5
- fix license tag
26c18f5
799cd1a
* Fri Apr 04 2008 Andrew Overholt <overholt@redhat.com> 1:3.1.12-5
Andrew Overholt ad5bf8f
- Rebuild for rhbz #234286.
Andrew Overholt ad5bf8f
be965dd
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1:3.1.12-4
be965dd
- Autorebuild for GCC 4.3
be965dd
799cd1a
* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 1:3.1.12-3
39f2ab0
 - rebuilt for unwind info generation, broken in gcc-4.1.1-21
39f2ab0
Igor Foox 128f8d9
* Thu Sep 21 2006 Igor Foox <ifoox@redhat.com> 1:3.1.12-2
Igor Foox 128f8d9
- Remove jpp string from release.
Igor Foox 128f8d9
Igor Foox 1678fab
* Fri Sep 08 2006 Igor Foox <ifoox@redhat.com> 1:3.1.12-1jpp_5fc
Igor Foox 1678fab
- Add dist tag.
Igor Foox 1678fab
Igor Foox 1678fab
* Thu Sep 07 2006 Igor Foox <ifoox@redhat.com> 1:3.1.12-1jpp_4fc
Igor Foox 1678fab
- Fix indentation of preamble.
Igor Foox 1678fab
- Fix version and epoch of jta Requires.
Igor Foox 1678fab
- Fix Group from Development/Libraries to System Environment/Libraries.
Igor Foox 1678fab
Igor Foox 1678fab
* Wed Sep 06 2006 Igor Foox <ifoox@redhat.com> 1:3.1.12-1jpp_3fc
Igor Foox 1678fab
- Remove duplicate readme files.
Igor Foox 1678fab
- Remove binary jars from distributed tarball, since they have no source
Igor Foox 1678fab
  attached to them, and are in violation of the LGPL.
Igor Foox 1678fab
- Change jta BR to 1.0 from 1.0.1 since geronimo-specs-compat is 1.0.
Igor Foox 1678fab
- Remove unneccessary 0 epoch from BRs.
Igor Foox 1678fab
Igor Foox 1678fab
* Thu Jul 20 2006 Igor Foox <ifoox@redhat.com> 1:3.1.12-1jpp_2fc
Igor Foox 1678fab
- Fix line endings.
Igor Foox 1678fab
- Change Group to standard Development/Java.
Igor Foox 1678fab
Igor Foox 1678fab
* Thu Jun 1 2006 Igor Foox <ifoox@redhat.com> 1:3.1.12-1jpp_1fc
Igor Foox 1678fab
- Natively compile
Igor Foox 1678fab
- Add mysql-connector-java-noSunAppletSecurity.patch to take out references
Igor Foox 1678fab
to sun classes
Igor Foox 1678fab
- Change BuildRoot to what Extras expects
Igor Foox 1678fab
Igor Foox 1678fab
* Thu Feb 2 2006 Jason Corley <jason.corley@gmail.com> 1:3.1.12-1jpp
Igor Foox 1678fab
- 3.1.12
Igor Foox 1678fab
- add some more docs from the tarball
Igor Foox 1678fab
- correct url
Igor Foox 1678fab
- remove vendor and distribution, should be defined in ~/.rpmmacros instead
Igor Foox 1678fab
52263db
* Sat May 14 2005 Jason Corley <jason.corley@gmail.com> 1:3.1.8-0.a.1jpp
Igor Foox 1678fab
- 3.1.8a
Igor Foox 1678fab
Igor Foox 1678fab
* Sun Feb 13 2005 Jason Corley <jason.corley@gmail.com> 1:3.1.6-1jpp
Igor Foox 1678fab
- Update to 3.1.6 now that it's considered stable
Igor Foox 1678fab
Igor Foox 1678fab
* Sat Feb 12 2005 Jason Corley <jason.corley@gmail.com> 1:3.0.16-1jpp
Igor Foox 1678fab
- Update to 3.0.16
Igor Foox 1678fab
Igor Foox 1678fab
* Mon Aug 23 2004 Fernando Nasser <fnasser@redhat.com> 1:3.0.14-1jpp
Igor Foox 1678fab
- Update to 3.0.14
Igor Foox 1678fab
- Rebuilt with Ant 1.6.2
Igor Foox 1678fab
Igor Foox 1678fab
* Wed Mar 24 2004 Kaj J. Niemi <kajtzu@fi.basen.net> 1:3.0.11-1jpp
Igor Foox 1678fab
- Bumped epoch, back to a "stable" release
Igor Foox 1678fab
Igor Foox 1678fab
* Fri Mar 19 2004 Kaj J. Niemi <kajtzu@fi.basen.net> 0:3.1.1-1jpp
Igor Foox 1678fab
- 3.1.1, supports stored procedures and SAVEPOINTs among other things.
Igor Foox 1678fab
- Tidy .spec file: nicer description and don't own %%{_javadir}
Igor Foox 1678fab
Igor Foox 1678fab
* Wed Jan 21 2004 David Walluck <david@anti-microsoft.org> 0:3.0.10-1jpp
Igor Foox 1678fab
- 3.0.10
Igor Foox 1678fab
- change group
Igor Foox 1678fab
52263db
* Sun Oct 05 2003 Henri Gomez <hgomez@users.sourceforge.net>  0:3.0.9-1jpp
Igor Foox 1678fab
- mysql-connector-j 3.0.9
Igor Foox 1678fab
Igor Foox 1678fab
* Mon Jul 07 2003 Henri Gomez <hgomez@users.sourceforge.net> 3.0.8.2jpp
Igor Foox 1678fab
- mysql-connector-j 3.0.8
Igor Foox 1678fab
- jar goes back in /usr/share/java
Igor Foox 1678fab
Igor Foox 1678fab
* Sun May 11 2003 David Walluck <david@anti-microsoft.org> 0:3.0.6-2jpp
Igor Foox 1678fab
- update for JPackage 1.5
Igor Foox 1678fab
Igor Foox 1678fab
* Tue Mar 25 2003 Nicolas Mailhot <Nicolas.Mailhot (at) JPackage.org> 3.0.6-1jpp
Igor Foox 1678fab
- For jpackage-utils 1.5
Igor Foox 1678fab
- New project name
Igor Foox 1678fab
- Requires java >= 1.4.1
Igor Foox 1678fab
Igor Foox 1678fab
* Thu Jun 06 2002 Henri Gomez <hgomez@users.sourceforge.net> 2.0.14.1jpp
Igor Foox 1678fab
- mm.mysql 2.0.14
Igor Foox 1678fab
Igor Foox 1678fab
* Tue May 07 2002 Henri Gomez <hgomez@users.sourceforge.net> 2.0.13.1jpp
Igor Foox 1678fab
- mm.mysql 2.0.13
Igor Foox 1678fab
Igor Foox 1678fab
* Tue Mar 26 2002 Henri Gomez <hgomez@users.sourceforge.net> 2.0.11.2jpp
Igor Foox 1678fab
- correct changelog
Igor Foox 1678fab
Igor Foox 1678fab
* Mon Feb 04 2002 Henri Gomez <hgomez@users.sourceforge.net>
Igor Foox 1678fab
- mm.mysql 2.0.11
Igor Foox 1678fab
Igor Foox 1678fab
* Thu Jan 17 2002 Henri Gomez <hgomez@users.sourceforge.net>
Igor Foox 1678fab
- mm.mysql 2.0.8
Igor Foox 1678fab
- seriously patch build.xml to make it compile on Linux boxes
Igor Foox 1678fab
  with both JDK 1.2/1.3 and 1.1
Igor Foox 1678fab
- added javadoc generation to build.xml
Igor Foox 1678fab
- changed manual to javadoc package
Igor Foox 1678fab
Igor Foox 1678fab
* Tue Feb 06 2001 Henri Gomez <hgomez@users.sourceforge.net>
Igor Foox 1678fab
- mm.mysql 2.0.4
Igor Foox 1678fab
- Fixes to getDecimal to fix decimal place wrong bug
Igor Foox 1678fab
Igor Foox 1678fab
* Mon Jan 15 2001 Henri Gomez <hgomez@users.sourceforge.net>
Igor Foox 1678fab
- Initial release mm.mysql 2.0.3
Igor Foox 1678fab
- detect jdbc-2.0 extension jar (javax.sql) and if present
Igor Foox 1678fab
  also build MysqlDataSource and MysqlDataSourceFactory
Igor Foox 1678fab
- build with IBM JDK 1.3.0 (cx130-20001114) and jikes 1.12
Igor Foox 1678fab
- build CLASSPATH=/usr/share/java/jdbc2_0-stdext.jar