I tried to install the driver with the following command.
install wrap:file:C:/MyTools/driver/ojdbc6.jar\\$Bundle-SymbolicName=oracle.jdbc&Bundle-Version=11.2.0.2&Bundle-Name='JDBC Driver for Oracle'
But, it failed with this error.
Error executing command bundle:install: unable to convert argument urls with value '' to type java.util.List<java.net.URI>
Can anyone help?
Thanks,
email3888
Hi,
You could try the simple command without specify Bundle-Name etc.
install wrap:file:C:/MyTools/driver/ojdbc6.jar
Or you install the ojdbc6.jar into Maven repo, then install it from M2 repo
mvn install:install-file -Dfile="C:/MyTools/driver/ojdbc6.jar" -DgroupId=ojdbc -DartifactId=ojdbc -Dversion=11.2.0.2.0 -Dpackaging=jar
install wrap:mvn
jdbc/ojdbc/11.2.0.2.0
Regards.