How can i find the dependency from a jira library?
Most of the time i use "https://mvnrepository.com", but this doesn't work always.
For example, where can i find the maven of com.atlassian.plugin.util.ClassLoaderUtils?
Just put the class in some add-ons' class and highlight the name with Ctrl key.
I use IntelliJ IDEA IDE for this. But it should be available in any IDE:
Hello,
I found it here:
http://www.java2s.com/Code/Jar/a/Downloadatlassianpluginscore260jar.htm
I just googled
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.
Hello,
Please take a look at this link: https://stackoverflow.com/questions/50685819/configure-bitbucket-plugin-to-avoid-hardcoding-of-secure-variable/55293119#55293119
From pom.xml you can add this library:
<dependency>
<groupId>com.atlassian.plugins</groupId>
<artifactId>atlassian-plugins-core</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @jacob delddd ,
Please take a look at this link: https://stackoverflow.com/questions/50685819/configure-bitbucket-plugin-to-avoid-hardcoding-of-secure-variable/55293119#55293119
From pom.xml you can add this library:
<dependency>
<groupId>com.atlassian.plugins</groupId>
<artifactId>atlassian-plugins-core</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.