-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[maven-release-plugin] prepare release org.coode.owlviz-4.1.5
- Loading branch information
1 parent
ca70034
commit 61469f2
Showing
1 changed file
with
168 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,169 +1,168 @@ | ||
<?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>org.sonatype.oss</groupId> | ||
<artifactId>oss-parent</artifactId> | ||
<version>7</version> | ||
</parent> | ||
|
||
<groupId>edu.stanford.protege</groupId> | ||
<artifactId>org.coode.owlviz</artifactId> | ||
<version>4.1.5-SNAPSHOT</version> | ||
<packaging>bundle</packaging> | ||
|
||
<name>OWLViz</name> | ||
<description>A plug-in for the Protege Desktop ontology editor that provides a graphical representation of the class | ||
hierarchies in an OWL ontology. | ||
</description> | ||
<url>http://protegewiki.stanford.edu/wiki/OWLViz</url> | ||
<licenses> | ||
<license> | ||
<name>GNU Lesser General Public License</name> | ||
<url>http://www.gnu.org/copyleft/lesser.html</url> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Matthew Horridge</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<name>Timothy Redmond</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<name>Tania Tudorache</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<name>Jennifer Vendetti</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
|
||
<mailingLists> | ||
<mailingList> | ||
<name>p4-feedback</name> | ||
<subscribe>http://mailman.stanford.edu/mailman/listinfo/p4-feedback</subscribe> | ||
<unsubscribe>http://mailman.stanford.edu/mailman/listinfo/p4-feedback</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>https://mailman.stanford.edu/pipermail/p4-feedback/</archive> | ||
<otherArchives> | ||
<otherArchive> | ||
http://protege-ontology-editor-knowledge-acquisition-system.136.n4.nabble.com/Protege-OWL-4-x-Support-f21363.html | ||
</otherArchive> | ||
</otherArchives> | ||
</mailingList> | ||
</mailingLists> | ||
|
||
<scm> | ||
<connection>scm:git:[email protected]:protegeproject/owlviz.git</connection> | ||
<developerConnection>scm:git:[email protected]:protegeproject/owlviz.git</developerConnection> | ||
<url>https://github.com/protegeproject/owlviz</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>edu.stanford.protege</groupId> | ||
<artifactId>org.protege.editor.core.application</artifactId> | ||
<version>5.0.0-beta-15</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>edu.stanford.protege</groupId> | ||
<artifactId>org.protege.editor.owl</artifactId> | ||
<version>5.0.0-beta-15</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.0</version> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>2.2.1</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.9.1</version> | ||
<executions> | ||
<execution> | ||
<configuration> | ||
<failOnError>false</failOnError> | ||
</configuration> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
|
||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<version>2.3.7</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<instructions> | ||
<Bundle-Activator>org.protege.editor.owl.ProtegeOWL</Bundle-Activator> | ||
<Bundle-ClassPath>., {maven-dependencies}</Bundle-ClassPath> | ||
<Bundle-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName> | ||
<Bundle-Vendor>The Protege Development Team</Bundle-Vendor> | ||
<Import-Package> | ||
org.apache.log4j.*;version="[1.2,2)", | ||
org.eclipse.core.runtime;registry=split, | ||
org.protege.editor.core.*;version="5.0.0", <!-- equivalent to [4.3,infinity) --> | ||
org.protege.editor.owl.*;version="5.0.0", | ||
org.protege.editor.owl.ui;version="5.0.0", | ||
* | ||
</Import-Package> | ||
<Include-Resource>plugin.xml, {maven-resources}</Include-Resource> | ||
</instructions> | ||
<executions> | ||
<execution> | ||
<id>bundle-manifest</id> | ||
<phase>install</phase> | ||
<goals> | ||
<goal>manifest</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-eclipse-plugin</artifactId> | ||
<version>2.9</version> | ||
<configuration> | ||
<pde>true</pde> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> | ||
<?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>org.sonatype.oss</groupId> | ||
<artifactId>oss-parent</artifactId> | ||
<version>7</version> | ||
</parent> | ||
|
||
<groupId>edu.stanford.protege</groupId> | ||
<artifactId>org.coode.owlviz</artifactId> | ||
<version>4.1.5</version> | ||
<packaging>bundle</packaging> | ||
|
||
<name>OWLViz</name> | ||
<description>A plug-in for the Protege Desktop ontology editor that provides a graphical representation of the class | ||
hierarchies in an OWL ontology. | ||
</description> | ||
<url>http://protegewiki.stanford.edu/wiki/OWLViz</url> | ||
<licenses> | ||
<license> | ||
<name>GNU Lesser General Public License</name> | ||
<url>http://www.gnu.org/copyleft/lesser.html</url> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Matthew Horridge</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<name>Timothy Redmond</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<name>Tania Tudorache</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<name>Jennifer Vendetti</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
|
||
<mailingLists> | ||
<mailingList> | ||
<name>p4-feedback</name> | ||
<subscribe>http://mailman.stanford.edu/mailman/listinfo/p4-feedback</subscribe> | ||
<unsubscribe>http://mailman.stanford.edu/mailman/listinfo/p4-feedback</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>https://mailman.stanford.edu/pipermail/p4-feedback/</archive> | ||
<otherArchives> | ||
<otherArchive> | ||
http://protege-ontology-editor-knowledge-acquisition-system.136.n4.nabble.com/Protege-OWL-4-x-Support-f21363.html | ||
</otherArchive> | ||
</otherArchives> | ||
</mailingList> | ||
</mailingLists> | ||
|
||
<scm> | ||
<connection>scm:git:[email protected]:protegeproject/owlviz.git</connection> | ||
<developerConnection>scm:git:[email protected]:protegeproject/owlviz.git</developerConnection> | ||
<url>https://github.com/protegeproject/owlviz</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>edu.stanford.protege</groupId> | ||
<artifactId>org.protege.editor.core.application</artifactId> | ||
<version>5.0.0-beta-15</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>edu.stanford.protege</groupId> | ||
<artifactId>org.protege.editor.owl</artifactId> | ||
<version>5.0.0-beta-15</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.0</version> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>2.2.1</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.9.1</version> | ||
<executions> | ||
<execution> | ||
<configuration> | ||
<failOnError>false</failOnError> | ||
</configuration> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
|
||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<version>2.3.7</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<instructions> | ||
<Bundle-Activator>org.protege.editor.owl.ProtegeOWL</Bundle-Activator> | ||
<Bundle-ClassPath>., {maven-dependencies}</Bundle-ClassPath> | ||
<Bundle-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName> | ||
<Bundle-Vendor>The Protege Development Team</Bundle-Vendor> | ||
<Import-Package> | ||
org.apache.log4j.*;version="[1.2,2)", | ||
org.eclipse.core.runtime;registry=split, | ||
org.protege.editor.core.*;version="5.0.0", <!-- equivalent to [4.3,infinity) --> | ||
org.protege.editor.owl.*;version="5.0.0", | ||
org.protege.editor.owl.ui;version="5.0.0", | ||
* | ||
</Import-Package> | ||
<Include-Resource>plugin.xml, {maven-resources}</Include-Resource> | ||
</instructions> | ||
<executions> | ||
<execution> | ||
<id>bundle-manifest</id> | ||
<phase>install</phase> | ||
<goals> | ||
<goal>manifest</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-eclipse-plugin</artifactId> | ||
<version>2.9</version> | ||
<configuration> | ||
<pde>true</pde> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |