java - Add JDBC in Netbeans Maven Project -


i have created java maven project inside of netbeans. need access oracle database via java code. downloaded jdbc driver (.jar file) oracle, do include maven repository inside of netbeans?

there link close want accomplish: http://www.mkyong.com/maven/how-to-add-oracle-jdbc-driver-in-your-maven-local-repository/

i not have maven installed on computer, have running inside of netbeans.

what steps of adding jdbc driver inside of netbeans maven repository?

cheers

you there... not use netbeans, i'm sure somewhere under it, has maven installed.

so, try locate mvn executable, , follow instruction provided in link posted, or official instructions it.

another try run command install:install-file -dfile=<path-to-file> -dgroupid=<group-id> -dartifactid=<artifact-id> -dversion=<version> -dpackaging=<packaging> goal, inside netbeans (again, i'm not netbeans user, since other tools allow it, maybe netbeans same...).

a google search showed this instructions. may you.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -