Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -239,12 +239,12 @@ static void setup() throws Exception {
node = Node.kadNode(getNodeConfiguration());
am.init(node);

node.run();
node.start();
}

@AfterAll
static void teardown() throws Exception {
node.shutdown();
node.stop();
FileUtils.deleteFile(testDir);
}

Expand Down
371 changes: 193 additions & 178 deletions api/pom.xml
Original file line number Diff line number Diff line change
@@ -1,184 +1,199 @@
<?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>
<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>io.bosonnetwork</groupId>
<artifactId>boson-parent</artifactId>
<version>3-SNAPSHOT</version>
<relativePath/>
</parent>

<parent>
<groupId>io.bosonnetwork</groupId>
<artifactId>boson-parent</artifactId>
<version>3-SNAPSHOT</version>
<relativePath/>
</parent>

<groupId>io.bosonnetwork</groupId>
<artifactId>boson-api</artifactId>
<version>2.0.8-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Boson API</name>
<description>
The public APIs for the Boson Kademlia DHT node.
</description>
<url>https://github.com/bosonnetwork/Boson.Core</url>

<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/bosonnetwork/Boson.Core/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<id>boson-network-dev</id>
<name>Boson Network</name>
<email>support@bosonnetwork.io</email>
<organization>BosonNetwork</organization>
<organizationUrl>https://github.com/bosonnetwork</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<properties>
<picUrl>https://avatars.githubusercontent.com/u/152134507</picUrl>
</properties>
</developer>
</developers>

<scm>
<connection>scm:git:git@github.com:bosonnetwork/Boson.Core.git</connection>
<developerConnection>scm:git:git@github.com:bosonnetwork/Boson.Core.git</developerConnection>
<url>git@github.com:bosonnetwork/Boson.Core.git</url>
</scm>

<dependencyManagement>
<artifactId>boson-api</artifactId>
<version>2.0.8-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Boson API</name>
<description>
The public APIs for the Boson Kademlia DHT node.
</description>
<url>https://github.com/bosonnetwork/Boson.Core</url>

<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/bosonnetwork/Boson.Core/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<id>boson-network-dev</id>
<name>Boson Network</name>
<email>support@bosonnetwork.io</email>
<organization>BosonNetwork</organization>
<organizationUrl>https://github.com/bosonnetwork</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<properties>
<picUrl>https://avatars.githubusercontent.com/u/152134507</picUrl>
</properties>
</developer>
</developers>

<scm>
<connection>scm:git:git@github.com:bosonnetwork/Boson.Core.git</connection>
<developerConnection>scm:git:git@github.com:bosonnetwork/Boson.Core.git</developerConnection>
<url>git@github.com:bosonnetwork/Boson.Core.git</url>
</scm>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.bosonnetwork</groupId>
<artifactId>boson-dependencies</artifactId>
<version>2.0.8-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>io.bosonnetwork</groupId>
<artifactId>boson-dependencies</artifactId>
<version>2.0.8-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Compile dependencies -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-cbor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>com.github.jnr</groupId>
<artifactId>jnr-ffi</artifactId>
</dependency>
<dependency>
<groupId>io.tmio</groupId>
<artifactId>tuweni-crypto</artifactId>
</dependency>

<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-sql-client</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>org.jdbi</groupId>
<artifactId>jdbi3-core</artifactId>
<optional>true</optional>
</dependency>
<!--
<dependency>
<groupId>org.jdbi</groupId>
<artifactId>jdbi3-sqlobject</artifactId>
<optional>true</optional>
</dependency>
-->

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>provided</scope>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-junit5</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-pg-client</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-jdbc-client</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<!-- Compile dependencies -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-cbor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>com.github.jnr</groupId>
<artifactId>jnr-ffi</artifactId>
</dependency>
<dependency>
<groupId>io.tmio</groupId>
<artifactId>tuweni-crypto</artifactId>
</dependency>

<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>org.jdbi</groupId>
<artifactId>jdbi3-core</artifactId>
<optional>true</optional>
</dependency>
<!--
<dependency>
<groupId>org.jdbi</groupId>
<artifactId>jdbi3-sqlobject</artifactId>
<optional>true</optional>
</dependency>
-->

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>provided</scope>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-junit5</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
</plugins>
</build>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Loading
Loading