gdxapp4d/gdxapp4d-vrgem4/pom.xml

48 lines
1.7 KiB
XML
Raw Normal View History

2022-03-01 18:03:03 +00:00
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>love.distributedrebirth.gdxapp4d</groupId>
<artifactId>gdxapp4d</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>gdxapp4d-vrgem4</artifactId>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>love.distributedrebirth.gdxapp4d</groupId>
<artifactId>gdxapp4d-tos4</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
2022-03-02 18:18:47 +00:00
<exportScr>true</exportScr>
2022-03-05 15:31:50 +00:00
<niceManifest>true</niceManifest>
2022-03-01 18:03:03 +00:00
<instructions>
<_donotcopy>(.git)</_donotcopy>
2022-03-02 18:18:47 +00:00
<_dsannotations>*</_dsannotations>
<_metatypeannotations>*</_metatypeannotations>
2022-03-01 18:03:03 +00:00
<Import-Package>
2022-03-16 16:47:42 +00:00
${tos4.packages}
2022-03-01 18:03:03 +00:00
</Import-Package>
<Export-Package>
love.distributedrebirth.gdxapp4d.vrgem4.service,
love.distributedrebirth.gdxapp4d.vrgem4.service.deskapp
</Export-Package>
2022-03-01 18:03:03 +00:00
<Private-Package>love.distributedrebirth.gdxapp4d.vrgem4.*</Private-Package>
<!--
<Embed-Dependency>*;artifactId=gdx;inline=true,*;artifactId=gdx-nativefilechooser;inline=true</Embed-Dependency>
-->
<Bundle-Activator>love.distributedrebirth.gdxapp4d.vrgem4.GDXAppVrGem4Activator</Bundle-Activator>
<Bundle-Vendor>distributedrebirth.love</Bundle-Vendor>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>