-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
113 lines (100 loc) · 3.84 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?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>
<groupId>dmi.protege.plugin</groupId>
<artifactId>dmi.YASPP</artifactId>
<version>1.0.0</version>
<packaging>bundle</packaging>
<name>YASPP Plugin for Protege</name>
<description> Yet Another SPARQL Plugin for Protege</description>
<organization>
<name>Department of Mathematics and Computer Science, University of Catania</name>
<url>http://dmi.unict.it/</url>
</organization>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/copyleft/lesser.html</url>
</license>
</licenses>
<developers>
<developer>
<name>Daniele Francesco Santamaria</name>
<email>[email protected]</email>
</developer>
</developers>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.9</version>
</dependency>
<dependency>
<groupId>com.hp.hpl.jena</groupId>
<artifactId>arq</artifactId>
<version>2.8.8</version>
</dependency>
<!-- https://mvnrepository.com/artifact/edu.stanford.protege/org.protege.editor.owl -->
<dependency>
<groupId>edu.stanford.protege</groupId>
<artifactId>protege-editor-owl</artifactId>
<version>5.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
<dependency>
<groupId>edu.stanford.protege</groupId>
<artifactId>sparql-query-plugin</artifactId>
<version>2.0.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.0.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Activator>org.protege.editor.owl.ProtegeOWL</Bundle-Activator>
<Bundle-ClassPath>.</Bundle-ClassPath>
<Bundle-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName>
<Bundle-Vendor>University of Catania</Bundle-Vendor>
<Import-Package>
org.protege.editor.core;version="5.0", <!-- equivalent to [5.0,infinity) -->
org.protege.editor.core.ui.error;version="5.0",
org.protege.editor.owl;version="5.0",
org.protege.editor.owl.model;version="5.0",
org.protege.editor.owl.ui;version="5.0",
org.protege.editor.owl.ui.renderer;version="5.0",
org.protege.editor.owl.ui.table;version="5.0",
org.protege.editor.owl.ui.view;version="5.0",
org.protege.owl.rdf;version="2.0",
org.apache.poi,
*
</Import-Package>
<Export-Package>org.protege.editor.owl.rdf.*;version="5.0.0"</Export-Package>
<Include-Resource>{maven-resources}</Include-Resource>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<pde>true</pde>
</configuration>
</plugin>
</plugins>
</build>
</project>