-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
102 lines (87 loc) · 3.03 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
<?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>
<!--this is comment -->
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>edu.wright.dase</groupId>
<artifactId>OWLAx</artifactId>
<version>1.2.0</version>
<name>OWLAx Protege 5.0+ Plugin</name>
<description>Ontology Design Pattern Plugin for Desktop Protege 5.0+</description>
<packaging>bundle</packaging>
<developers>
<developer>
<name>Md Kamruzzaman Sarker</name>
<email>mdkamruzzamansarker@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:md-k-sarker/OWLAx.git</connection>
<developerConnection>scm:git:git@github.com:md-k-sarker/OWLAx.git</developerConnection>
<url>https://github.com/md-k-sarker/OWLAx</url>
<tag>HEAD</tag>
</scm>
<dependencies>
<dependency>
<groupId>edu.stanford.protege</groupId>
<artifactId>protege-editor-owl</artifactId>
<version>[5.0.0]</version>
</dependency>
<!-- <dependency> <groupId>org.checkerframework</groupId> <artifactId>checker</artifactId>
<version>2.0.0</version> </dependency> <dependency> <groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId> <version>2.0.0</version> </dependency>
<dependency> <groupId>org.checkerframework</groupId> <artifactId>jdk8</artifactId>
<version>2.0.0</version> </dependency> -->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Activator>org.protege.editor.owl.ProtegeOWL</Bundle-Activator>
<Bundle-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName>
<Include-Resource>plugin.xml, {maven-resources}</Include-Resource>
<Bundle-ClassPath>.</Bundle-ClassPath>
<Embed-Transitive>true</Embed-Transitive>
<Embed-Dependency>
</Embed-Dependency>
<Import-Package>
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)",
com.ibm.icu.*;resolution:=optional,
org.eclipse.swt.*;resolution:=optional,
org.eclipse.jface.*;resolution:=optional,
*
</Import-Package>
</instructions>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>install</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</configuration>
</plugin>
</plugins>
</build>
</project>