-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
code clean up and features completed
- Loading branch information
1 parent
266ee02
commit 67b5867
Showing
479 changed files
with
743 additions
and
86,546 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 |
---|---|---|
|
@@ -2,11 +2,10 @@ | |
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>es.upm.fi.oeg</groupId> | ||
<artifactId>wot-directory</artifactId> | ||
<artifactId>wothive</artifactId> | ||
<version>0.1.0</version> | ||
<name>Directory for the Web of Things</name> | ||
|
||
|
||
<properties> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
|
@@ -25,7 +24,7 @@ | |
<developer> | ||
<name>Andrea Cimmino</name> | ||
<email>[email protected]</email> | ||
<organization>Universidad Politecnica de Madrid, Ontology Engineering Group</organization> | ||
<organization>Universidad Politécnica de Madrid, Ontology Engineering Group</organization> | ||
<organizationUrl>https://www.oeg-upm.net/</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
@@ -36,66 +35,25 @@ | |
<artifactId>spark-core</artifactId> | ||
<version>2.9.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jmdns</groupId> | ||
<artifactId>jmdns</artifactId> | ||
<version>3.5.7</version> | ||
</dependency> | ||
<!-- Thing description translation --> | ||
<dependency> | ||
<groupId>es.upm.fi.oeg</groupId> | ||
<artifactId>wot-jtd</artifactId> | ||
<version>0.2.8</version> | ||
</dependency> | ||
|
||
<!-- Json path filter --> | ||
<dependency> | ||
<groupId>com.jayway.jsonpath</groupId> | ||
<artifactId>json-path</artifactId> | ||
<version>2.6.0</version> | ||
</dependency> | ||
|
||
<!-- Time formatter --> | ||
<dependency> | ||
<groupId>joda-time</groupId> | ||
<artifactId>joda-time</artifactId> | ||
<version>2.10.10</version> | ||
</dependency> | ||
<!-- JWT --> | ||
<dependency> | ||
<groupId>io.jsonwebtoken</groupId> | ||
<artifactId>jjwt</artifactId> | ||
<version>0.9.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.xml.bind</groupId> | ||
<artifactId>jaxb-api</artifactId> | ||
<version>2.1</version> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc --> | ||
<!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc --> | ||
<dependency> | ||
<groupId>org.xerial</groupId> | ||
<artifactId>sqlite-jdbc</artifactId> | ||
<version>3.36.0.1</version> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/com.h2database/h2 --> | ||
<dependency> | ||
<groupId>com.h2database</groupId> | ||
<artifactId>h2</artifactId> | ||
<version>1.4.200</version> | ||
</dependency> | ||
|
||
<!-- https://mvnrepository.com/artifact/com.j256.ormlite/ormlite-core --> | ||
<dependency> | ||
<groupId>com.j256.ormlite</groupId> | ||
<artifactId>ormlite-core</artifactId> | ||
<version>5.6</version> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/com.j256.ormlite/ormlite-jdbc --> | ||
<dependency> | ||
<groupId>com.j256.ormlite</groupId> | ||
<artifactId>ormlite-jdbc</artifactId> | ||
<version>5.6</version> | ||
</dependency> | ||
|
||
|
||
<!-- SSE events --> | ||
<!-- https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-eventsource-servlet --> | ||
<dependency> | ||
|
@@ -109,12 +67,41 @@ | |
<version>0.11.3</version> | ||
</dependency> | ||
|
||
|
||
<dependency> | ||
<groupId>com.sparkjava</groupId> | ||
<artifactId>spark-template-velocity</artifactId> | ||
<version>2.7.1</version> | ||
</dependency> | ||
|
||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-log4j12</artifactId> | ||
<version>1.7.25</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
<version>1.2.17</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>3.2.4</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
<configuration> | ||
<transformers> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | ||
<mainClass>directory.Directory</mainClass> | ||
</transformer> | ||
</transformers> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
Empty file.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.