Launch Atlassian product using the specified default locale (atlas-run etc.)

Hello,

is there a way to run Atlassian product with a default language other than the system language?

Example:
System language: PL
Product: Jira (using atlas-run) with default language: DE

Cheers
Adam Labus

Isn’t it enough for you to just change the language once under settings? As far as I know, since the Database does not get deleted between runs it will stay that way.

Otherwise please check this thread:

Hi Adam,

You can change JVM language with the --jvmargs β€œ-Duser.language=… -Duser.country=…” , e.g.

atlas-run-standalone --container tomcat7x --product jira --version 8.12.0 --data-version 8.12.0 --jvmargs "-Xmx1g -Xms512m -Duser.timezone=Europe/Kiev -Duser.language=de -Duser.country=DE -Datlassian.upm.on.demand=false -Dupm.pac.disable=true -Datlassian.darkfeature.jira.onboarding.feature.disabled=true -Datlassian.mail.senddisabled=false" --plugins jira.plugin.timereports:timereports:2.9.4

Thank you.

2 Likes

Thank you @azhdanov,

it works perfectly :slight_smile:

pom.xml

...
    <build>
        <plugins>
            <plugin>
                <groupId>com.atlassian.maven.plugins</groupId>
                <artifactId>jira-maven-plugin</artifactId>
                <version>${amps.version}</version>
                <extensions>true</extensions>
                <configuration>
                    <jvmArgs>-Duser.language=de -Duser.country=DE</jvmArgs>
                </configuration>
            </plugin>
        </plugins>
    </build>
...

Cheers
Adam Labus