Skip to content

Commit

Permalink
code clean up and features completed
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaCimminoArriaga committed Sep 14, 2021
1 parent 266ee02 commit 67b5867
Show file tree
Hide file tree
Showing 479 changed files with 743 additions and 86,546 deletions.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified README.md
100644 → 100755
Empty file.
95 changes: 41 additions & 54 deletions pom.xml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand All @@ -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>
Expand All @@ -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 modified schema.json
100644 → 100755
Empty file.
Empty file modified shape.ttl
100644 → 100755
Empty file.
79 changes: 0 additions & 79 deletions src/main/java/directory/DNSN.java

This file was deleted.

Loading

0 comments on commit 67b5867

Please sign in to comment.