Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. JEMH-API and JEMH-AO artifacts are now available by using the following repository in your pom.xml

    JEMH Repositories:

    Code Block
        <repositories>
            <repository>
                <id>atlassian-public</id>
                <url>https://maven.atlassian.com/repository/public</url>
                <snapshots>
                    <enabled>true</enabled>
                    <updatePolicy>never</updatePolicy>
                    <checksumPolicy>warn</checksumPolicy>
                </snapshots>
                <releases>
                    <enabled>true</enabled>
                    <checksumPolicy>warn</checksumPolicy>
                </releases>
            </repository>
            
    		<!-- for JEMH API package -->
    	    <repository>
    	      <id>ppl-public</id>
    	      <name>PPL Public Release Repository</name>
    	      <url>https://nexus.thepluginpeople.com/repository/ppl-public/</url>
    	    </repository>
    
    		<!-- for arquillian containers -->
            <repository>
                <id>adaptavist-nexus</id>
                <name>Adaptavist External Releases</name>
                <url>https://nexus.adaptavist.com/content/repositories/external</url>
            </repository>
        </repositories>

  2. JEMH Dependencies:

    Code Block
    <properties>
    	<jemh.api.version>2.1.2</jemh.api.version>
    </properties>
    <dependencies>
    		<dependency>
    			<groupId>com.javahollic.jira.jemh</groupId>
    			<artifactId>jemh-api</artifactId>
    			<version>${jemh.api.version}</version>
    			<scope>provided</scope>
    		</dependency>
    </dependencies>

  3. Checkout the httpsthe https://bitbucket.org/javahollicpluginpeople-public/jemh-example-extensions projectextensions project:

    Code Block
    hggit clone https://bitbucket.org/javahollicpluginpeople-public/jemh-example-extensions

  4. At the command line, go into user-integration-testing and run atlas-mvn clean install to pull down all the dependencies, (the trailing 'sonar' repository in the project pom will be updated soon with our own public repo URL)

...