Hi, I am trying the REST plugin example at [1]. The pom file gives an error as follows,
*Some problems were encountered while processing the POMs: [ERROR] Unresolveable build extension: Plugin com.atlassian.maven.plugins:maven-refapp-plugin:5.0.13 or one of its dependencies could not be resolved: Failed to collect dependencies for com.atlassian.maven.plugins:maven-refapp-plugin:jar:5.0.13 () @ [ERROR] Unknown packaging: atlassian-plugin @ line 14, column 16 (at line 3)* I have attached the pom.xml as well. Can someone help me on this? [1] https://developer.atlassian.com/docs/atlassian-platform-common-components/rest-api-development/developing-a-rest-service-plugin <file:///home/dilhasha/refapp-rest-service-plugin/pom.xml#40> Thanks, Dilhasha <file:///home/dilhasha/refapp-rest-service-plugin/pom.xml#40> *M.N.F. Dilhasha* Software Engineering Intern | *WSO2 Lanka* email : *[email protected] <[email protected]>*mobile : +94 77 8449321
<?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.atlassian.plugins.tutorial</groupId> <artifactId>Message</artifactId> <version>1.0-SNAPSHOT</version> <organization> <name>WSO2</name> <url>http://www.wso2.com/</url> </organization> <name>Message</name> <description>This is the com.atlassian.plugins.tutorial:Message plugin for Atlassian Refapp.</description> <packaging>atlassian-plugin</packaging> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</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>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>2.9.10</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.atlassian.sal</groupId> <artifactId>sal-api</artifactId> <version>2.13.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.wink</groupId> <artifactId>wink-client</artifactId> <version>1.1.3-incubating</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.10.19</version> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>com.atlassian.refapp</groupId> <artifactId>atlassian-platform</artifactId> <version>2.12.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>com.atlassian.maven.plugins</groupId> <artifactId>maven-refapp-plugin</artifactId> <version>${refapp.version}</version> <extensions>true</extensions> <configuration> <productVersion>${refapp.version}</productVersion> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> </plugins> </build> <properties> <refapp.version>5.0.13</refapp.version> <amps.version>5.0.13</amps.version> <maven-compiler-plugin.version>3.2</maven-compiler-plugin.version> </properties> </project>
_______________________________________________ Dev mailing list [email protected] http://wso2.org/cgi-bin/mailman/listinfo/dev
