How to use atlas-run when developing for JIRA Software

When I use atlas-run, it starts JIRA Core with JIRA Software, but to enable JIRA Software I need to apply a trial license. For JIRA Core there is this automatic developer license in place, which is valid 3 days. How can I get the same for JIRA Software when I use atlas-run.

Here is my pom.xml.

</build>
    <plugins>
        <plugin>
            <groupId>com.atlassian.maven.plugins</groupId>
            <artifactId>maven-jira-plugin</artifactId>
            <version>${amps.version}</version>
            <extensions>true</extensions>
            <configuration>
                <productVersion>${jira.version}</productVersion>
                <productDataVersion>${jira.version}</productDataVersion>
                <productDataPath>${basedir}/generated-test-resources_7.0.10.zip</productDataPath>
		        <applications>
		            <application>
		                <applicationKey>jira-software</applicationKey>
		                <version>${jira.software.application.version}</version>
		            </application>
		        </applications>                    
            </configuration>
        </plugin>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
            </configuration>
        </plugin>
        <plugin>
            <groupId>com.atlassian.maven.plugins</groupId>
            <artifactId>maven-amps-plugin</artifactId>
            <version>${amps.version}</version>
            <extensions>true</extensions>
        </plugin>
    </plugins>
</build>

Best regards
Holger

1 Like

How did you generate your test data source file?
${basedir}/generated-test-resources_7.0.10.zip

It would contain your license in it(or rather it would not contain your software license). If you remove that line it should give you licenses for all the apps.

1 Like

If I remove the test data source file, you are right. I get JIRA Software also enabled with developer license. Do you have some directions where to find and how to edit content of the test data source file?