Skip to content

Commit

Permalink
added maven
Browse files Browse the repository at this point in the history
  • Loading branch information
seralf committed Jul 24, 2014
1 parent c28a5fc commit 4829677
Show file tree
Hide file tree
Showing 51 changed files with 411 additions and 435 deletions.
Binary file removed .DS_Store
Binary file not shown.
26 changes: 0 additions & 26 deletions .classpath

This file was deleted.

16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
# Eclipse
.classpath
.project
.settings/
/bin

# Intellij
.idea/
*.iml
*.iws

# Mac
.DS_Store

# Maven
log/
target/
36 changes: 0 additions & 36 deletions .project

This file was deleted.

11 changes: 0 additions & 11 deletions .settings/.jsdtscope

This file was deleted.

7 changes: 0 additions & 7 deletions .settings/org.eclipse.jdt.core.prefs

This file was deleted.

9 changes: 0 additions & 9 deletions .settings/org.eclipse.wst.common.component

This file was deleted.

9 changes: 0 additions & 9 deletions .settings/org.eclipse.wst.common.project.facet.core.xml

This file was deleted.

1 change: 0 additions & 1 deletion .settings/org.eclipse.wst.jsdt.ui.superType.container

This file was deleted.

1 change: 0 additions & 1 deletion .settings/org.eclipse.wst.jsdt.ui.superType.name

This file was deleted.

14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@



example usage

+ launch application with

mvn clean jetty:run

+ test /source
http://localhost:8080/lode/source?url=http://vocab.deri.ie/void.rdf

+ test /extract
http://localhost:8080/lode/extract?url=http://vocab.deri.ie/void.rdf
1 change: 0 additions & 1 deletion build/.gitignore

This file was deleted.

Binary file removed content/.DS_Store
Binary file not shown.
Binary file removed content/WEB-INF/.DS_Store
Binary file not shown.
Binary file removed content/WEB-INF/lib/aterm-java-1.6.jar
Binary file not shown.
Binary file removed content/WEB-INF/lib/jgrapht-jdk1.5.jar
Binary file not shown.
Binary file not shown.
Binary file removed content/WEB-INF/lib/pellet-core.jar
Binary file not shown.
Binary file removed content/WEB-INF/lib/pellet-datatypes.jar
Binary file not shown.
Binary file removed content/WEB-INF/lib/pellet-el.jar
Binary file not shown.
Binary file removed content/WEB-INF/lib/pellet-owlapiv3.jar
Binary file not shown.
Binary file removed content/WEB-INF/lib/pellet-rules.jar
Binary file not shown.
Binary file removed content/WEB-INF/lib/saxon9he.jar
Binary file not shown.
32 changes: 0 additions & 32 deletions content/WEB-INF/web.xml

This file was deleted.

116 changes: 116 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
<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>
<groupId>it.essepuntato</groupId>
<artifactId>LODE</artifactId>
<version>1.3-SNAPSHOT</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>

<!-- aterm -->
<dependency>
<groupId>com.github.ansell.aterms</groupId>
<artifactId>aterm-java</artifactId>
<version>1.8.2</version>
</dependency>

<!-- saxon-he -->
<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
<version>9.5.1-6</version>
</dependency>

<!-- jgrapht (jdk 1.5) -->
<dependency>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht-jdk1.5</artifactId>
<version>0.7.3</version>
</dependency>

<!-- pellet -->
<dependency>
<groupId>com.github.ansell.pellet</groupId>
<artifactId>pellet-core</artifactId>
<version>2.3.6-ansell</version>
</dependency>
<dependency>
<groupId>com.github.ansell.pellet</groupId>
<artifactId>pellet-datatypes</artifactId>
<version>2.3.6-ansell</version>
</dependency>
<dependency>
<groupId>com.github.ansell.pellet</groupId>
<artifactId>pellet-el</artifactId>
<version>2.3.6-ansell</version>
</dependency>
<dependency>
<groupId>com.github.ansell.pellet</groupId>
<artifactId>pellet-owlapiv3</artifactId>
<version>2.3.6-ansell</version>
</dependency>
<dependency>
<groupId>com.github.ansell.pellet</groupId>
<artifactId>pellet-rules</artifactId>
<version>2.3.6-ansell</version>
</dependency>

<!-- owlapi -->
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-distribution</artifactId>
<version>3.5.0</version>
</dependency>

<!-- servlets -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>

</dependencies>


<build>

<plugins>

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>

<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<configuration>
<stopPort>9966</stopPort>
<stopKey>foo</stopKey>
<scanIntervalSeconds>10</scanIntervalSeconds>
<webApp>
<contextPath>/lode</contextPath>
</webApp>
<connectors>
<connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
<port>8080</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
</connectors>
</configuration>
</plugin>

</plugins>

</build>

</project>
Binary file removed src/.DS_Store
Binary file not shown.
Binary file removed src/it/.DS_Store
Binary file not shown.
Binary file removed src/it/essepuntato/.DS_Store
Binary file not shown.
File renamed without changes.
Loading

0 comments on commit 4829677

Please sign in to comment.