forked from KITE-Cloud/SRE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
203 lines (175 loc) · 7.65 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>edu.stanford.swrl</groupId>
<artifactId>swrlapi-parent</artifactId>
<version>2.0.5</version>
</parent>
<groupId>de.thm</groupId>
<artifactId>SRE_Plugin</artifactId>
<version>1.0</version>
<name>SRE-Tab</name>
<description>SRE-Tab Plugin for Desktop Protege 5.0+</description>
<packaging>bundle</packaging>
<properties>
<jetty.plugin.version>9.3.9.v20160517</jetty.plugin.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<slf4j.version>1.7.25</slf4j.version>
<swrlapi.version>2.0.5</swrlapi.version>
<swrlapi.drools.version>2.0.5</swrlapi.drools.version>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<webResources>
<resource>
<directory>${project.basedir}\libs</directory>
<targetPath>WEB-INF/lib</targetPath>
<includes>
<include>*.jar</include>
</includes>
</resource>
</webResources>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jetty.plugin.version}</version>
<configuration>
<scanIntervalSeconds>2</scanIntervalSeconds>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName>
<Include-Resource>
{maven-resources}
</Include-Resource>
<Bundle-ClassPath>.</Bundle-ClassPath>
<Embed-Transitive>true</Embed-Transitive>
<Embed-Dependency>
ca.uvic.cs.chisel.cajun,
swrlapi, swrlapi-drools-engine,
axis,
drools-core, drools-compiler, knowledge-api, drools-reteoo, antlr-runtime, kie-api,
kie-internal, mvel2, ecj,
checker, checker-qual,
commons-codec, commons-discovery
</Embed-Dependency>
<Import-Package>
com.ibm.icu.*;resolution:=optional,
org.eclipse.swt.*;resolution:=optional,
org.eclipse.jface.*;resolution:=optional,
org.protege.editor.core.*;version="5.0.0",
org.protege.editor.owl.*;version="5.0.0",
org.semanticweb.owlapi.*;version="[4.2.5,5.0.0)",
org.swrlapi.*;version="1.0.0",
org.swrlapi.drools.*;version="1.0.0",
com.ibm.*;resolution:=optional,
com.sun.*;resolution:=optional,
sun.*;resolution:=optional,
javax.*;resolution:=optional,
org.apache.tools.ant.*;resolution:=optional,
org.apache.bsf.*;resolution:=optional,
org.apache.commons.httpclient.*;resolution:=optional,
org.apache.commons.logging.*;resolution:=optional,
org.apache.commons.net.*;resolution:=optional,
com.thoughtworks.xstream.*;resolution:=optional,
com.google.protobuf.*;resolution:=optional,
org.antlr.stringtemplate.*;resolution:=optional,
org.codehaus.janino.*;resolution:=optional,
org.eclipse.jdt.*;resolution:=optional,
org.exolab.castor.xml.*;resolution:=optional,
org.junit.*;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>edu.stanford.protege</groupId>
<artifactId>ca.uvic.cs.chisel.cajun</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>edu.stanford.swrl</groupId>
<artifactId>swrlapi</artifactId>
<version>${swrlapi.version}</version>
</dependency>
<dependency>
<groupId>edu.stanford.swrl</groupId>
<artifactId>swrlapi-drools-engine</artifactId>
<version>${swrlapi.drools.version}</version>
</dependency>
<dependency>
<groupId>edu.stanford.protege</groupId>
<artifactId>protege-common</artifactId>
</dependency>
<dependency>
<groupId>edu.stanford.protege</groupId>
<artifactId>protege-editor-core</artifactId>
</dependency>
<dependency>
<groupId>edu.stanford.protege</groupId>
<artifactId>protege-editor-owl</artifactId>
</dependency>
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-osgidistribution</artifactId>
</dependency>
<dependency>
<groupId>org.apache.geronimo.bundles</groupId>
<artifactId>commons-discovery</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.equinox</groupId>
<artifactId>org.eclipse.equinox.registry</artifactId>
<version>3.5.0.v20100503</version>
</dependency>
<dependency>
<groupId>org.checkerframework</groupId>
<artifactId>checker</artifactId>
</dependency>
<dependency>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
</dependency>
<dependency>
<groupId>org.checkerframework</groupId>
<artifactId>jdk8</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>