Hello Everyone,
I'm newbie in Atlassian SDK. And I try to figure out plugins.
So https://developer.atlassian.com/server/framework/atlassian-sdk/create-a-helloworld-plugin-project/ in that tutorial I have done all instructions.
But in the
http://localhost:2990/jira address I'm encountering an error it says,
We couldn't start the following plugins:
So I've checked my JAVA HOME SDK and etc you can see below atlas-version
Some fixes say change Jira-install/setenv.sh
-Datlassian.plugins.enable.wait=300
But I can not find Jira-install because I've download Atlassian SDK with the brew.
How can I fix this error? Can you explain it to dummiest way?
atlas-version
ATLAS Version: 8.0.16
ATLAS Home: /usr/local/Cellar/atlassian-plugin-sdk/8.0.16/libexec
ATLAS Scripts: /usr/local/Cellar/atlassian-plugin-sdk/8.0.16/libexec/bin
ATLAS Maven Home: /usr/local/Cellar/atlassian-plugin-sdk/8.0.16/libexec/apache-maven-3.5.4
AMPS Version: 8.0.2
--------
Executing: /usr/local/Cellar/atlassian-plugin-sdk/8.0.16/libexec/apache-maven-3.5.4/bin/mvn --version -gs /usr/local/Cellar/atlassian-plugin-sdk/8.0.16/libexec/apache-maven-3.5.4/conf/settings.xml
Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T21:33:14+03:00)
Maven home: /usr/local/Cellar/atlassian-plugin-sdk/8.0.16/libexec/apache-maven-3.5.4
Java version: 1.8.0_242, vendor: Amazon.com Inc., runtime: /Users/ridvan/.sdkman/candidates/java/8.0.242-amzn/jre
Default locale: tr_TR, platform encoding: UTF-8
OS name: "mac os x", version: "10.14.6", arch: "x86_64", family: "mac"
solve this problem ,
Firstly if you have that issue you have to know 'that is the generic issue ! '
and please use atlas-debug and read the logs.
Second, I have faced that issue because I use SDKMAN sdk manager. That manages sdk's in your machines in macOS.
I remove sdk man and I changed my SDK to ORACLE !
That is most important thing for this library ! You can check the detail in SDK section here
I use Oracle ->> java version "1.8.0_241"
Also, the second important thing is LOCALE !!!
If your machine locale doesn't EN or English you can probably face that issue. You can check it with
➜ ~ echo $JAVA_TOOL_OPTIONS
if it doesn't set you can set it in
➜ ~ vi ~/.bash_profile
and edit file as
export JAVA_TOOL_OPTIONS="-Duser.language=EN -Duser.country=EN"
After all that my running config versions are,
ATLAS Version: 8.0.16
ATLAS Home: /Applications/Atlassian/atlassian-plugin-sdk-8.0.16
ATLAS Scripts: /Applications/Atlassian/atlassian-plugin-sdk-8.0.16/bin
ATLAS Maven Home: /Applications/Atlassian/atlassian-plugin-sdk-8.0.16/apache-maven-3.5.4
AMPS Version: 8.0.2
--------
Executing: /Applications/Atlassian/atlassian-plugin-sdk-8.0.16/apache-maven-3.5.4/bin/mvn --version -gs /Applications/Atlassian/atlassian-plugin-sdk-8.0.16/apache-maven-3.5.4/conf/settings.xml
Picked up JAVA_TOOL_OPTIONS: -Duser.language=EN -Duser.country=EN
Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T21:33:14+03:00)
Maven home: /Applications/Atlassian/atlassian-plugin-sdk-8.0.16/apache-maven-3.5.4
Java version: 1.8.0_241, vendor: Oracle Corporation, runtime: /Library/Java/JavaVirtualMachines/jdk1.8.0_241.jdk/Contents/Home/jre
Default locale: en_EN, platform encoding: UTF-8
OS name: "mac os x", version: "10.15.4", arch: "x86_64", family: "mac"
I hope that helps someone. Thanks. !
Rıdvan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.