JWT is not resolved in AEM 6.2
Hi,
I am creating json web token (JWT) osgi service in AEM 6.2. The build is successful but since io.jsonwebtoken is not resolved my osgi bundle is in Installed state.
(io.jsonwebtoken,version=[0.6,1) -- Cannot be resolved)
I have added the following dependencies, but still i am getting the error.
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>0.6.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.8.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-atinject_1.0_spec</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.adobe.aem</groupId>
<artifactId>uber-jar</artifactId>
<version>6.2.0</version>
<scope>provided</scope>
<classifier>obfuscated-apis</classifier>
</dependency>
Could anyone help me on this issue.
Thanks in advance.
Divya