vladislav.tyapukhin 1f702ca533 Initial commit
2025-06-16 22:22:41 +04:00

66 lines
1.7 KiB
XML

<?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>
<groupId>edu.stanford.protege</groupId>
<artifactId>protege-parent</artifactId>
<version>5.6.6</version>
<relativePath>../</relativePath>
</parent>
<!-- groupId and version are inherited from the parent -->
<artifactId>protege-common</artifactId>
<packaging>bundle</packaging>
<name>protege-common</name>
<description>Core Protege Libraries</description>
<dependencies>
<dependency>
<groupId>edu.stanford.protege</groupId>
<artifactId>protege-launcher</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-Activator>org.protege.common.Activator</Bundle-Activator>
<Bundle-ClassPath>.</Bundle-ClassPath>
<Bundle-SymbolicName>org.protege.common</Bundle-SymbolicName>
<Export-Package>
org.protege.common.*;version=${project.version}
</Export-Package>
<Import-Package>
!com.ibm.*,
!javax.jms,
!javax.mail.*,
!javax.jmdns,
!com.sun.*,
sun.misc;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>