Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0"?>
- <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">
- <parent>
- <groupId>..</groupId>
- <artifactId>..</artifactId>
- <version>..</version>
- <relativePath />
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.example.jira.plugins</groupId>
- <artifactId>rs-technicaluser-api</artifactId>
- <version>1.0-SNAPSHOT</version>
- <name>.. API</name>
- <packaging>bundle</packaging>
- <!--
- <dependencies>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>${gson.version}</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- -->
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <version>3.0.0</version>
- <extensions>true</extensions>
- <configuration>
- <instructions>
- <Export-Package>com.example.jira.plugins.rs.technicaluser.api;version="${project.version}</Export-Package>
- <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
- <Bundle-Description>${project.description}</Bundle-Description>
- </instructions>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <scm>
- <connection>...</connection>
- </scm>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment