Skip to content

Commit

Permalink
Convert Pellet to build using Maven
Browse files Browse the repository at this point in the history
  • Loading branch information
ansell committed Jan 20, 2014
1 parent 34b98d3 commit 3eccc8d
Show file tree
Hide file tree
Showing 3,152 changed files with 2,205 additions and 599 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
44 changes: 0 additions & 44 deletions .classpath

This file was deleted.

7 changes: 7 additions & 0 deletions .gitignore
Expand Up @@ -4,3 +4,10 @@ build
bin
qa
doc/javadoc

target/
.classpath
.project
.settings/

test-persistence-classification.zip
17 changes: 0 additions & 17 deletions .project

This file was deleted.

72 changes: 72 additions & 0 deletions cli/pom.xml
@@ -0,0 +1,72 @@
<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>com.clarkparsia.pellet</groupId>
<artifactId>pellet-parent</artifactId>
<version>2.3.2-SNAPSHOT</version>
</parent>
<artifactId>pellet-cli</artifactId>
<name>Pellet :: CLI</name>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>pellet-owlapiv3</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>pellet-pellint</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>pellet-modularity</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>pellet-explanation</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parsers</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>assemble</goal>
</goals>
</execution>
</executions>
<configuration>
<programs>
<program>
<mainClass>pellet.Pellet</mainClass>
<id>pellet</id>
</program>
</programs>
</configuration>
</plugin>
</plugins>
</build>

</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file removed core/lib/aterm-java-1.6.jar
Binary file not shown.
53 changes: 53 additions & 0 deletions core/pom.xml
@@ -0,0 +1,53 @@
<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>com.clarkparsia.pellet</groupId>
<artifactId>pellet-parent</artifactId>
<version>2.3.2-SNAPSHOT</version>
</parent>
<artifactId>pellet-core</artifactId>
<name>Pellet :: Core</name>
<description>Pellet core module.</description>
<dependencies>
<dependency>
<groupId>com.github.ansell.aterms</groupId>
<artifactId>aterm-java</artifactId>
</dependency>
<dependency>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht-jdk1.5</artifactId>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-arq</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Expand Up @@ -18,7 +18,7 @@
* Company: Clark & Parsia, LLC. <http://www.clarkparsia.com>
* </p>
*
* @author HŽctor PŽrez-Urbina
* @author Héctor Pérez-Urbina
*/
public class XSDLanguage extends AbstractBaseDatatype<ATermAppl> {

Expand Down
Expand Up @@ -18,7 +18,7 @@
* Company: Clark & Parsia, LLC. <http://www.clarkparsia.com>
* </p>
*
* @author HŽctor PŽrez-Urbina
* @author Héctor Pérez-Urbina
*/
public class XSDNCName extends AbstractBaseDatatype<ATermAppl> {

Expand Down
Expand Up @@ -18,7 +18,7 @@
* Company: Clark & Parsia, LLC. <http://www.clarkparsia.com>
* </p>
*
* @author HŽctor PŽrez-Urbina
* @author Héctor Pérez-Urbina
*/
public class XSDNMToken extends AbstractBaseDatatype<ATermAppl> {

Expand Down
Expand Up @@ -18,7 +18,7 @@
* Company: Clark & Parsia, LLC. <http://www.clarkparsia.com>
* </p>
*
* @author HŽctor PŽrez-Urbina
* @author Héctor Pérez-Urbina
*/
public class XSDName extends AbstractBaseDatatype<ATermAppl> {

Expand Down
Expand Up @@ -18,7 +18,7 @@
* Company: Clark & Parsia, LLC. <http://www.clarkparsia.com>
* </p>
*
* @author HŽctor PŽrez-Urbina
* @author Héctor Pérez-Urbina
*/
public class XSDNormalizedString extends AbstractBaseDatatype<ATermAppl> {

Expand Down
Expand Up @@ -18,7 +18,7 @@
* Company: Clark & Parsia, LLC. <http://www.clarkparsia.com>
* </p>
*
* @author HŽctor PŽrez-Urbina
* @author Héctor Pérez-Urbina
*/
public class XSDToken extends AbstractBaseDatatype<ATermAppl> {

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 3eccc8d

Please sign in to comment.