evolve-conn
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.zepben.evolve</groupId> <artifactId>evolve-conn</artifactId> <version>0.12.0</version> </dependency>
<?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> <parent> <groupId>com.zepben.maven</groupId> <artifactId>evolve-super-pom</artifactId> <version>0.37.0</version> </parent> <groupId>com.zepben.evolve</groupId> <artifactId>evolve-conn</artifactId> <version>0.12.0</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>A collection of utilities to create and manage connections between Zepben services and clients.</description> <url>https://github.com/zepben/evolve-conn-jvm/</url> <organization> <name>Zeppelin Bend Pty Ltd.</name> <url>https://zepben.com</url> </organization> <licenses> <license> <name>Mozilla Public License v2.0</name> <url>https://mozilla.org/MPL/2.0/</url> </license> </licenses> <developers> <developer> <name>Anthony Charlton</name> <email>anthony.charlton@zepben.com</email> <organization>Zeppelin Bend</organization> <organizationUrl>https://zepben.com</organizationUrl> </developer> <developer> <name>Glenn Carwardine</name> <email>glenn.carwardine@zepben.com</email> <organization>Zeppelin Bend</organization> <organizationUrl>https://zepben.com</organizationUrl> </developer> <developer> <name>Kurt Greaves</name> <email>kurt.greaves@zepben.com</email> <organization>Zeppelin Bend</organization> <organizationUrl>https://zepben.com</organizationUrl> </developer> <developer> <name>Marcus Koh</name> <email>marcus.koh@zepben.com</email> <organization>Zeppelin Bend</organization> <organizationUrl>https://zepben.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/zepben/evolve-conn-jvm.git</connection> <developerConnection>scm:git:ssh://github.com/zepben/evolve-conn-jvm.git</developerConnection> <url>https://github.com/zepben/evolve-conn-jvm/src</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jacoco.coverage>0.2</jacoco.coverage> </properties> <dependencies> <dependency> <groupId>com.zepben</groupId> <artifactId>annotations</artifactId> <version>1.3.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.zepben</groupId> <artifactId>vertx-utils</artifactId> <version>1.3.0</version> </dependency> <!-- Kotlin --> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-core</artifactId> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> </dependency> <!--Vert.x packages--> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-web</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-rx-java2</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-lang-kotlin</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-lang-kotlin-coroutines</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-auth-common</artifactId> <scope>provided</scope> </dependency> <!-- Protobuf/gRPC --> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-netty-shaded</artifactId> <scope>provided</scope> </dependency> <!-- Auth0 --> <dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.auth0</groupId> <artifactId>jwks-rsa</artifactId> <scope>provided</scope> </dependency> <!-- misc --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- Test --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.zepben</groupId> <artifactId>test-utils</artifactId> <version>2.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.zepben</groupId> <artifactId>zepben-utils</artifactId> <version>1.4.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito.kotlin</groupId> <artifactId>mockito-kotlin</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.mockk</groupId> <artifactId>mockk</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> </plugins> </build> </project>