Devops 技术栈


  1. jenkins-client
    1
    2
    3
    4
    5
    <dependency>
    <groupId>com.offbytwo.jenkins</groupId>
    <artifactId>jenkins-client</artifactId>
    <version>0.3.8</version>
    </dependency>
  2. org.eclipse.jgit
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    <dependency>
    <groupId>org.eclipse.jgit</groupId>
    <artifactId>org.eclipse.jgit</artifactId>
    <version>4.8.0.201706111038-r</version>
    <exclusions>
    <exclusion>
    <artifactId>jsch</artifactId>
    <groupId>com.jcraft</groupId>
    </exclusion>
    </exclusions>
    </dependency>
    1. com.jcraft.jsch 是一个纯 Java 实现的用于 SSH2 协议的类库
      1
      2
      3
      4
      5
      6
      <dependency>
      <groupId>com.jcraft</groupId>
      <artifactId>jsch</artifactId>
      <version>0.1.55</version>
      </dependency>

    2. gitlab4j-api
      1
      2
      3
      4
      5
           <dependency>
      <groupId>org.gitlab4j</groupId>
      <artifactId>gitlab4j-api</artifactId>
      <version>4.19.0</version>
      </dependency>
    3. zip4j
      1
      2
      3
      4
      5
           <dependency>
      <groupId>net.lingala.zip4j</groupId>
      <artifactId>zip4j</artifactId>
      <version>2.9.1</version>
      </dependency>