Skip to content

Commit

Permalink
准备发布第一个版本
Browse files Browse the repository at this point in the history
  • Loading branch information
LinuxSuRen committed Dec 17, 2017
1 parent 80eb436 commit 15aab7b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 8 deletions.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.surenpi/jenkins.client.java/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.surenpi/jenkins.client.java)

# jenkins-client-java
Java实现的对Jenkins操作

Java binding for the Jenkins client.

# How to use it

Add the following dependency to the pom.xml file of your project:

```xml
<dependency>
<groupId>com.surenpi.ci</groupId>
<artifactId>jenkins.client.java</artifactId>
<version>1.0.0-20171217</version>
</dependency>
```
21 changes: 14 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,19 @@
<parent>
<groupId>com.surenpi.autotest</groupId>
<artifactId>autotest.parent</artifactId>
<version>1.0.1-20170815-SNAPSHOT</version>
<version>1.0.1-20170618</version>
</parent>

<groupId>com.surenpi</groupId>
<groupId>com.surenpi.ci</groupId>
<artifactId>jenkins.client.java</artifactId>
<version>0.0.1-20171122-SNAPSHOT</version>
<version>1.0.0-20171217</version>

<name>JenkinsJavaClient</name>
<url>https://github.com/suren-jenkins/jenkins-client-java</url>

<properties>
<testSkip>true</testSkip>
<docSkip>true</docSkip>
</properties>

<build>
Expand All @@ -25,6 +26,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -171,9 +178,9 @@
</repositories>

<scm>
<connection>scm:git:https://github.com/LinuxSuRen/phoenix.webui.framework.git</connection>
<url>scm:git:https://github.com/LinuxSuRen/phoenix.webui.framework</url>
<developerConnection>scm:git:https://github.com/LinuxSuRen/phoenix.webui.framework.git</developerConnection>
<connection>scm:git:https://github.com/suren-jenkins/jenkins-client-java.git</connection>
<url>scm:git:https://github.com/suren-jenkins/jenkins-client-java</url>
<developerConnection>scm:git:https://github.com/suren-jenkins/jenkins-client-java.git</developerConnection>
<tag>${project.version}</tag>
</scm>

Expand All @@ -196,7 +203,7 @@
<description>Java实现的对Jenkins操作</description>

<ciManagement>
<url>https://travis-ci.org/LinuxSuRen/phoenix.webui.framework</url>
<url>https://travis-ci.org/suren-jenkins/jenkins-client-java</url>
<system>travis-ci</system>
</ciManagement>

Expand Down

0 comments on commit 15aab7b

Please sign in to comment.