Skip to content

Commit 58600cc

Browse files
committed
WL#12825, Remove third-party libraries from sources and bundles.
1 parent 5aa15d5 commit 58600cc

13 files changed

+17
-19
lines changed

.classpath

-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@
1515
<classpathentry kind="src" path="src/main/protocol-impl/java"/>
1616
<classpathentry kind="src" path="src/main/resources"/>
1717
<classpathentry kind="src" path="src/test/java"/>
18-
<classpathentry kind="lib" path="lib/protobuf-java-3.6.1.jar"/>
19-
<classpathentry kind="lib" path="lib/jboss-common-jdbc-wrapper.jar"/>
20-
<classpathentry kind="lib" path="lib/c3p0-0.9.1-pre6.jar"/>
21-
<classpathentry kind="lib" path="lib/slf4j-api-1.6.1.jar"/>
2218
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
2319
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/MySQL ConnectorJ Extra Libraries"/>
2420
<classpathentry kind="output" path="bin"/>

CHANGES

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
Version 8.0.16
55

6+
- WL#12825, Remove third-party libraries from sources and bundles.
7+
68
- Fix for Bug#93590 (29054329), javax.net.ssl.SSLException: closing inbound before receiving peer's close_notify.
79

810
- Fix for Bug#94414 (29384853), Connector/J RPM package have version number in path.

README

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
22

3-
This is a release of MySQL Connector/J, a JDBC Type 4 driver for MySQL.
3+
This is a release of MySQL Connector/J, a JDBC Type 4 driver for MySQL that
4+
also supports the new X DevAPI.
45

56
License information can be found in the LICENSE file.
67

@@ -15,3 +16,13 @@ For additional downloads and the source of MySQL Connector/J, visit
1516
http://dev.mysql.com/downloads
1617

1718
MySQL Connector/J is brought to you by the MySQL team at Oracle.
19+
20+
Notice:
21+
- In order to use the logging capabilities provided by the default
22+
implementation com.mysql.cj.log.Slf4JLogger, it is required to add one or
23+
more jars for Simple Logging Facade for Java (SLF4J) to your CLASSPATH.
24+
- To use the X DevAPI features in Connector/J, you also need the external
25+
library protobuf-java, which you can download manually from the official
26+
Maven repository and add it to the CLASSPATH, or use Maven's automatic
27+
dependency resolution features by adding a dependency to "GroupId: mysql"
28+
and "ArtifactId: mysql-connector-java" to your project's pom.xml file.

build.xml

-11
Original file line numberDiff line numberDiff line change
@@ -280,10 +280,6 @@ See also com.mysql.cj.conf.PropertyDefinitions.SYSP_* variables for other test o
280280
<exclude name="**/protobuf-java-2.6.0.jar" />
281281
</fileset>
282282

283-
<fileset dir="${com.mysql.cj.build.dir.driver}/lib">
284-
<include name="**/*.jar" />
285-
</fileset>
286-
287283
<pathelement location="${com.mysql.cj.build.dir.driver}" />
288284
</path>
289285

@@ -594,10 +590,6 @@ See also com.mysql.cj.conf.PropertyDefinitions.SYSP_* variables for other test o
594590
<filterset refid="versionFilterset" />
595591
<filterset refid="licenseFilterset" />
596592
</copy>
597-
598-
<copy todir="${com.mysql.cj.build.dir.driver}/lib">
599-
<fileset dir="lib" />
600-
</copy>
601593
</target>
602594

603595

@@ -1307,9 +1299,6 @@ See also com.mysql.cj.conf.PropertyDefinitions.SYSP_* variables for other test o
13071299
<include name="**/*.jar" />
13081300
<exclude name="**/protobuf-java-2.6.0.jar" />
13091301
</fileset>
1310-
<fileset dir="${com.mysql.cj.build.dir.driver}/lib">
1311-
<include name="**/*.jar" />
1312-
</fileset>
13131302
<pathelement location="${com.mysql.cj.build.dir.driver}" />
13141303
<pathelement location="${com.mysql.cj.testsuite.build.dir}/${com.mysql.cj.build.driver.fullName}" />
13151304
<pathelement path="${com.mysql.cj.testsuite.build.classpath}" />

lib/c3p0-0.9.1-pre6.jar

-519 KB
Binary file not shown.

lib/c3p0-0.9.1-pre6.src.zip

-589 KB
Binary file not shown.

lib/jboss-common-jdbc-wrapper-src.jar

-34.5 KB
Binary file not shown.

lib/jboss-common-jdbc-wrapper.jar

-49 KB
Binary file not shown.

lib/protobuf-java-3.6.1.jar

-1.36 MB
Binary file not shown.

lib/slf4j-api-1.6.1.jar

-24.9 KB
Binary file not shown.

src/main/core-impl/java/com/mysql/cj/log/Jdk14Logger.java src/main/core-api/java/com/mysql/cj/log/Jdk14Logger.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
33
*
44
* This program is free software; you can redistribute it and/or modify it under
55
* the terms of the GNU General Public License, version 2.0, as published by the

src/main/core-impl/java/com/mysql/cj/log/NullLogger.java src/main/core-api/java/com/mysql/cj/log/NullLogger.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
33
*
44
* This program is free software; you can redistribute it and/or modify it under
55
* the terms of the GNU General Public License, version 2.0, as published by the

src/main/core-impl/java/com/mysql/cj/log/Slf4JLogger.java src/main/core-api/java/com/mysql/cj/log/Slf4JLogger.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
33
*
44
* This program is free software; you can redistribute it and/or modify it under
55
* the terms of the GNU General Public License, version 2.0, as published by the

0 commit comments

Comments
 (0)