How do you find oracle jdbc driver in maven repository?
Answer / Rahul Nayak
To find the Oracle JDBC driver in Maven, use the Maven Central Repository. The groupId is `com.oracle`, artifactId is `ojdbc` (for example, `ojdbc7` for version 12.2.0.1), and packaging is usually `jar`. To add it to your pom.xml, use the following:
```xml
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc7</artifactId>
<version>12.2.0.1</version>
</dependency>
```
| Is This Answer Correct ? | 0 Yes | 0 No |
What types of maven repository?
Have you ever had a problem getting your projects in eclipse refreshed after you made changes in the pom files?
What is a system dependency?
List out what are the aspects does Maven Manages?
What is an uber jar?
What are the main features of maven?
Explain what is maven? How does it work?
What is dependency exclusion?
Throw some light on the pom.xml file in maven.
What is the command to create a new project based on an archetype?
How you can produce execution debug output or error messages?
Explain how you can exclude dependency?