134 lines
3.4 KiB
XML
134 lines
3.4 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-editor-core</artifactId>
|
|
<packaging>bundle</packaging>
|
|
|
|
<name>protege-editor-core</name>
|
|
<description>Core ontology editing infrastructure used by the Protege desktop application.</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>edu.stanford.protege</groupId>
|
|
<artifactId>protege-launcher</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.googlecode.mdock</groupId>
|
|
<artifactId>mdock</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.jgoodies</groupId>
|
|
<artifactId>jgoodies-looks</artifactId>
|
|
<version>2.7.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.jgoodies</groupId>
|
|
<artifactId>jgoodies-common</artifactId>
|
|
<version>1.8.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.auto.value</groupId>
|
|
<artifactId>auto-value-annotations</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.auto.value</groupId>
|
|
<artifactId>auto-value</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.sf.trove4j</groupId>
|
|
<artifactId>core</artifactId>
|
|
<version>3.1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.hamcrest</groupId>
|
|
<artifactId>hamcrest</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<instructions>
|
|
<Bundle-Activator>org.protege.editor.core.ProtegeApplication</Bundle-Activator>
|
|
<Bundle-SymbolicName>org.protege.editor.core.application;singleton:=true</Bundle-SymbolicName>
|
|
<Embed-Dependency>*;scope=provided;inline=true</Embed-Dependency>
|
|
<Export-Package>
|
|
org.protege.editor.core.*,
|
|
</Export-Package>
|
|
<_exportcontents>
|
|
!com.jgoodies.looks.plastic.icons.*,
|
|
org.coode.mdock.*,
|
|
com.jgoodies.*,
|
|
gnu.trove.*
|
|
</_exportcontents>
|
|
<Import-Package>
|
|
!com.sun.*,
|
|
!com.apple.*,
|
|
!sun.swing,
|
|
org.eclipse.core.runtime;registry="split",
|
|
*
|
|
</Import-Package>
|
|
</instructions>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>ide</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|