...
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>
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>
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
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)
...