Hi.
I started to create a plugin where the objective is to connect with the SSO company, using SAML. I create the code to make the SAML request, but I have some troubles to install the plugin due to packaging.
I’m using this artifact
<dependency>
<groupId>org.springframework.security.extensions</groupId>
<artifactId>spring-security-saml2-core</artifactId>
<version>${spring-security-saml2-core-version}</version>
<scope>provided</scopbe>
</dependency>
and, at first attempt, I get some issues related with osgi.wiring.package. Putting the the following line in the pom.xml file the error disappear on installation
resolution:=“optional”, org.springframework.security.*;
Now, I have an error at runtime, related with NoClassfound
Anyone can help with this kind of packaging errors? Some explanation?
I read some atlassian tutorials, but I’m not understanding where should I specify the dependency.
Regards