Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?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>
- <parent>[..]
- </parent>
- <artifactId>[..]</artifactId>
- <version>0.1.0.17-SNAPSHOT</version>
- <name>${project.artifactId}</name>
- <packaging>atlassian-plugin</packaging>
- <properties>
- <jira.version>6.1.4</jira.version>
- <jira.data.version>6.1</jira.data.version>
- <!-- <jira.api>jira-api</jira.api> -->
- <jira.api>jira-core</jira.api>
- <!--<scala.version>2.10.3.v20130923-060037-VFINAL-e2fec6b28d</scala.version>-->
- <scala.version>2.10.3</scala.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>javax.ws.rs</groupId>
- <artifactId>jsr311-api</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.xml.bind</groupId>
- <artifactId>jaxb-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.atlassian.plugins.rest</groupId>
- <artifactId>atlassian-rest-common</artifactId>
- <version>1.0.2</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.atlassian.jira</groupId>
- <artifactId>jira-rest-plugin</artifactId>
- <version>4.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.3</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.scala-lang</groupId>
- <artifactId>scala-library</artifactId>
- <version>${scala.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.scalatest</groupId>
- <artifactId>scalatest</artifactId>
- <version>1.2</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <scm>[..]</scm>
- <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.data.version}</productDataVersion>
- <allowGoogleTracking>false</allowGoogleTracking>
- <!-- <productDataPath>${basedir}/src/test/resources/generated-test-resources.zip</productDataPath> -->
- <instructions>
- <Bundle-Classpath>patch0,patch1,patch2,patch3,patch4,.</Bundle-Classpath>
- </instructions>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.scala-tools</groupId>
- <artifactId>maven-scala-plugin</artifactId>
- <version>2.15.0</version>
- <executions>
- <execution>
- <goals>
- <goal>compile</goal>
- <goal>testCompile</goal>
- </goals>
- <configuration>
- <args>
- <arg>-make:transitive</arg>
- <arg>-dependencyfile</arg>
- <arg>${project.build.directory}/.scala_dependencies</arg>
- </args>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment