structure-project-pom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.almworks.jira.structure</groupId> <artifactId>structure-project-pom</artifactId> <version>1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.almworks.jira.structure</groupId> <artifactId>structure-project-pom</artifactId> <version>1.0</version> <packaging>pom</packaging> <name>Structure Plugin Project Base POM</name> <description> Structure Plugin for JIRA - Base Development POM </description> <url>http://structure.almworks.com</url> <licenses> <!-- license for the POM --> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>ALMWorks</name> <url>http://almworks.com</url> </organization> <scm> <connection>scm:svn:http://svn/h4j/trunk/structure</connection> <developerConnection>scm:svn:http://svn/h4j/trunk/structure</developerConnection> <url>scm:svn:http://svn/h4j/trunk/structure</url> </scm> <issueManagement> <system>JIRA</system> <url>http://jira.almworks.com</url> </issueManagement> <developers> <developer> <id>almworks</id> <name>ALM Works</name> <email>info@almworks.com</email> </developer> </developers> <properties> <!-- don't forget to change <version> in structure API pom.xml (can't use property there due to deployment problems) --> <structure.api.version>0.2.1</structure.api.version> <structure.version>1.3.0</structure.version> <jira.version>4.4</jira.version> <jira.data.version>4.4</jira.data.version> <powermock.version>1.4.10</powermock.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <atlassian.dev.mode>true</atlassian.dev.mode> <maven.test.it.skip>true</maven.test.it.skip> <maven.test.unit.skip>false</maven.test.unit.skip> <integers.version>0.23</integers.version> <jetbrains.annotations.version>7.0.3</jetbrains.annotations.version> </properties> <modules> <module>structure-api</module> <module>structure-plugin</module> <module>api-examples</module> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>com.almworks.jira.structure</groupId> <artifactId>structure-api</artifactId> <version>${structure.api.version}</version> </dependency> <!-- bundled libs --> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> <version>10.5.3.0_1</version> </dependency> <dependency> <groupId>javolution</groupId> <artifactId>javolution</artifactId> <version>5.5.1</version> </dependency> <dependency> <groupId>com.almworks.integers</groupId> <artifactId>integers</artifactId> <version>${integers.version}</version> </dependency> <dependency> <groupId>com.intellij</groupId> <artifactId>annotations</artifactId> <version>${jetbrains.annotations.version}</version> </dependency> <!-- Atlassian libs --> <dependency> <groupId>com.atlassian.jira</groupId> <artifactId>atlassian-jira</artifactId> <version>${jira.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.atlassian.plugins.rest</groupId> <artifactId>atlassian-rest-common</artifactId> <version>2.1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.atlassian.sal</groupId> <artifactId>sal-api</artifactId> <version>2.6.1</version> <scope>provided</scope> </dependency> <!-- system libs --> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.ws.rs</groupId> <artifactId>jsr311-api</artifactId> <version>1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.4</version> <scope>provided</scope> </dependency> <!-- test libs --> <dependency> <groupId>com.atlassian.jira</groupId> <artifactId>jira-rest-plugin</artifactId> <version>4.2-beta1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.atlassian.jira</groupId> <artifactId>jira-func-tests</artifactId> <version>${jira.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.atlassian.selenium</groupId> <artifactId>atlassian-webdriver-browsers-auto</artifactId> <version>2.0.0-m15</version> <scope>test</scope> </dependency> <dependency> <groupId>com.atlassian.selenium</groupId> <artifactId>atlassian-webdriver-jira</artifactId> <version>2.0.0-m15</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.0-rc1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <version>${powermock.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <version>${powermock.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.4.3</version> <configuration> <reportsDirectory>${basedir}/target/surefire-reports</reportsDirectory> </configuration> </plugin> </plugins> </build> </project>