jx-java-client

Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/

Лицензия

Лицензия

Категории

Категории

Java Языки программирования Jenkins Компиляция и сборка Continuous Integration and Continuous Delivery CLI Взаимодействие с пользователем
Группа

Группа

io.jenkins-x.client
Идентификатор

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

jx-java-client
Последняя версия

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

1.0.4
Дата

Дата

Тип

Тип

jar
Описание

Описание

jx-java-client
Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/
Ссылка на сайт

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

https://jenkins-x.io/
Организация-разработчик

Организация-разработчик

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

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

http://github.com/jenkins-x/jx-java-client

Скачать jx-java-client

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

<!-- https://jarcasting.com/artifacts/io.jenkins-x.client/jx-java-client/ -->
<dependency>
    <groupId>io.jenkins-x.client</groupId>
    <artifactId>jx-java-client</artifactId>
    <version>1.0.4</version>
</dependency>
// https://jarcasting.com/artifacts/io.jenkins-x.client/jx-java-client/
implementation 'io.jenkins-x.client:jx-java-client:1.0.4'
// https://jarcasting.com/artifacts/io.jenkins-x.client/jx-java-client/
implementation ("io.jenkins-x.client:jx-java-client:1.0.4")
'io.jenkins-x.client:jx-java-client:jar:1.0.4'
<dependency org="io.jenkins-x.client" name="jx-java-client" rev="1.0.4">
  <artifact name="jx-java-client" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.jenkins-x.client', module='jx-java-client', version='1.0.4')
)
libraryDependencies += "io.jenkins-x.client" % "jx-java-client" % "1.0.4"
[io.jenkins-x.client/jx-java-client "1.0.4"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
io.fabric8 : kubernetes-client jar 3.1.12

test (2)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.12
org.assertj : assertj-core jar 2.4.1

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

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

Jenkins X Java Client

This library implements a Java client for working with Jenkins X for use in things like:

  • Jenkins plugins such as jx-resources
  • IDE plugins such as for IDEA or eclipse
  • other Java tools that want to integrate closely with Jenkins X
Jenkins X icon

Using the PipelineClient

You can create and use a client like this:

PipelineClient client = PipelineClient.newInstance();

// load and start watching pipelnes
client.start();

List<PipelineActivity> pipelines = client.getPipelines();

// stop watching
client.close();

You can also listen to PipelineActivity resources being added/updated/deleted via a listener...

Watcher<PipelineActivity> listener = new Watcher<PipelineActivity>() {
    @Override
    public void eventReceived(Action action, PipelineActivity pipelineActivity) {
        // on add/modify/delete of a pipeline
    }

    @Override
    public void onClose(KubernetesClientException e) {       
    }
};
client.addListener(listener);
io.jenkins-x.client

Jenkins X

CI/CD solution for modern cloud applications on Kubernetes

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

Версия
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0