Hi, I am developing an add-on plugin that requires connection to SQL server.For that, I have installed SQL server JDBC driver with maven and written dependency in pom.xml.
But, when I am doing that I am getting an exception: unable to resolve 19.0: missing requirement [19.0] osgi.wiring.package; (osgi.wiring.package=com.microsoft.aad.adal4j).
I dont know what I am doing wrong. Plz help me to resolve this.
How did you write this dependency in pom.xml?
In pom.xml like this
<dependency>
<groupId>com.microsoft.sqlserver</groupId> <artifactId>mssql-jdbc</artifactId> <version>6.4.0.jre7</version> <optional>true</optional> </dependency>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try to do it like this
<dependency>
<groupId>com.microsoft.sqlserver</groupId> <artifactId>mssql-jdbc</artifactId> <version>6.4.0.jre7</version> <scope>compile</scope> </dependency>
Kindly make atlas-mvn clean package
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.