6.2 Bundle Issue
Any Bundle I deploy to 6.2 instance is throwing this error
javax.inject,version=[0.0,1) -- Cannot be resolved
I googled and found out the possible below solution.
So I added this config in my Core Project POM file and redployed the bundle.
<dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-atinject_1.0_spec</artifactId> <version>1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> </dependency>But even after adding this config and I still get the same error. Any Possible reason what else I might be missing.
TIA

