java - Is it allowed to repackage Oracles JDBC driver? -


I would like to distribute my Java program as a JAR file. My program requires the Oracle JDBC driver, which is also distributed as a JR file. But the java -jar command accepts only one jar file, so I have to merge two jar files, this can be done very easily, but am I allowed to do this? Do I have permission to distribute my program in the form of a file, which contains the contents of the Oracle JDBC jar file?

but the Java-ARGE command accepts only one jar file.

This is not correct. Your JAR file may have a value with a class-path: the entry that can name the Oracle .jar file.

Comments