Deploy Dependencies Maven Plugin

use maven to download artifacts in the dependency list from your private repository and upload to remote machine

Лицензия

Лицензия

Группа

Группа

com.github.lkq
Идентификатор

Идентификатор

insta-db
Последняя версия

Последняя версия

0.1.3
Дата

Дата

Тип

Тип

jar
Описание

Описание

Deploy Dependencies Maven Plugin
use maven to download artifacts in the dependency list from your private repository and upload to remote machine
Ссылка на сайт

Ссылка на сайт

https://github.com/lkq/deploy-deps-maven-plugin
Система контроля версий

Система контроля версий

https://github.com/lkq/insta-db

Скачать insta-db

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.github.lkq/insta-db/ -->
<dependency>
    <groupId>com.github.lkq</groupId>
    <artifactId>insta-db</artifactId>
    <version>0.1.3</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.lkq/insta-db/
implementation 'com.github.lkq:insta-db:0.1.3'
// https://jarcasting.com/artifacts/com.github.lkq/insta-db/
implementation ("com.github.lkq:insta-db:0.1.3")
'com.github.lkq:insta-db:jar:0.1.3'
<dependency org="com.github.lkq" name="insta-db" rev="0.1.3">
  <artifact name="insta-db" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.lkq', module='insta-db', version='0.1.3')
)
libraryDependencies += "com.github.lkq" % "insta-db" % "0.1.3"
[com.github.lkq/insta-db "0.1.3"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
com.github.docker-java : docker-java jar 3.0.14

test (8)

Идентификатор библиотеки Тип Версия
org.junit.jupiter : junit-jupiter-api jar 5.1.0
org.junit.jupiter : junit-jupiter-engine jar 5.1.0
org.mockito : mockito-core jar 2.21.0
org.mockito : mockito-junit-jupiter jar 2.21.0
ch.qos.logback : logback-classic jar 1.2.3
javax.activation : activation jar 1.1
org.postgresql : postgresql jar 42.2.5
mysql : mysql-connector-java jar 8.0.13

Модули Проекта

Данный проект не имеет модулей.

Insta DB

a wrapper over docker-java api to startup a local db docker container for testing

Build Status

Dependency

<dependency>
    <groupId>com.github.lkq</groupId>
    <artifactId>insta-db</artifactId>
    <version>0.1.3</version>
</dependency>

Usage

Setup

instaDB = InstaDB.postgresql("instadb-pg-container")
        .dockerClient(DockerClientFactory.defaultClient())
        .dockerLogger(dockerLogger)
        .init();

int hostPort = PortFinder.find();
instaDB.container().bindPort(5432, hostPort, InternetProtocol.TCP);
instaDB.container().environmentVariables(Arrays.asList("POSTGRES_PASSWORD=password01"));

instaDB.start(60);

Connect

connection = DriverManager.getConnection("jdbc:postgresql://localhost:" + hostPort + "/", "postgres", "password01");

Версии библиотеки

Версия
0.1.3