Last active
July 31, 2021 18:05
-
-
Save maneeshaindrachapa/550161c7f2c17a8e31403c744a449a84 to your computer and use it in GitHub Desktop.
org.wso2.carbon.game.consumer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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/xsd/maven-4.0.0.xsd"> | |
<parent> | |
<artifactId>game-manager</artifactId> | |
<groupId>org.wso2.carbon</groupId> | |
<version>1.0-SNAPSHOT</version> | |
</parent> | |
<modelVersion>4.0.0</modelVersion> | |
<artifactId>org.wso2.carbon.game.consumer</artifactId> | |
<packaging>bundle</packaging> | |
<name>WSO2 Carbon-Game Consumer</name> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.felix</groupId> | |
<artifactId>maven-scr-plugin</artifactId> | |
<executions> | |
<execution> | |
<id>generate-scr-scrdescriptor</id> | |
<goals> | |
<goal>scr</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.felix</groupId> | |
<artifactId>maven-bundle-plugin</artifactId> | |
<extensions>true</extensions> | |
<configuration> | |
<instructions> | |
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> | |
<Bundle-Name>${project.artifactId}</Bundle-Name> | |
<private-package>org.wso2.carbon.game.consumer.internal</private-package> | |
<Export-Package> | |
!org.wso2.carbon.game.consumer.internal, | |
org.wso2.carbon.game.consumer.* | |
</Export-Package> | |
<Import-Package> | |
org.osgi.framework; version="${osgi.framework.imp.pkg.version.range}", | |
org.osgi.service.component; version="${osgi.service.component.imp.pkg.version.range}", | |
org.wso2.carbon.game.producer.*; version="${project.version}" | |
</Import-Package> | |
</instructions> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
<dependencies> | |
<dependency> | |
<groupId>org.apache.felix</groupId> | |
<artifactId>org.apache.felix.scr.ds-annotations</artifactId> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.osgi</groupId> | |
<artifactId>org.eclipse.osgi.services</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.osgi</groupId> | |
<artifactId>org.eclipse.osgi</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.wso2.carbon</groupId> | |
<artifactId>org.wso2.carbon.game.producer</artifactId> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment