Skip to content

Commit bd93ed9

Browse files
committed
Add CircleCI
1 parent 28ccf13 commit bd93ed9

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

.circleci/config.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2.1
2+
3+
jobs:
4+
build-and-test:
5+
docker:
6+
- image: cimg/openjdk:8.0
7+
steps:
8+
- checkout
9+
- run:
10+
name: Build
11+
command: mvn -B -DskipTests clean package
12+
- run:
13+
name: Test
14+
command: mvn verify
15+
16+
workflows:
17+
ci:
18+
jobs:
19+
- build-and-test

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Fork of Apache XML-RPC
2+
[![CircleCI](https://circleci.com/gh/evolvedbinary/apache-xmlrpc/tree/main.svg?style=svg)](https://circleci.com/gh/evolvedbinary/apache-xmlrpc/tree/main)
23
[![Java 8](https://img.shields.io/badge/java-8+-blue.svg)](https://adoptopenjdk.net/)
34
[![License](https://img.shields.io/badge/license-Apache%202-blue.svg)](https://opensource.org/licenses/Apache2.0)
45
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.evolvedbinary.thirdparty.org.apache.xmlrpc/xmlrpc/badge.svg)](https://search.maven.org/search?q=g:com.evolvedbinary.thirdparty.org.apache.xmlrpc)

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
</issueManagement>
6262

6363
<ciManagement>
64-
<system>Gump</system>
65-
<url>http://vmgump.apache.org/gump/public/ws-xmlrpc/xmlrpc/index.html</url>
64+
<system>CircleCI</system>
65+
<url>https://circleci.com/gh/evolvedbinary/apache-xmlrpc/tree/main</url>
6666
</ciManagement>
6767

6868
<mailingLists>

0 commit comments

Comments
 (0)