Skip to content

Commit 6cdd656

Browse files
committed
Remove Travis, add GitHub action.
1 parent ec6b1fe commit 6cdd656

File tree

4 files changed

+29
-26
lines changed

4 files changed

+29
-26
lines changed

.github/workflows/maven.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# This workflow will build a Java project with Maven
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
4+
name: CI with Maven
5+
6+
on:
7+
push:
8+
branches: [ master ]
9+
pull_request:
10+
branches: [ master ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v3
19+
- uses: actions/setup-java@v3
20+
- name: Set up JDK 17
21+
with:
22+
distribution: temurin
23+
java-version: 17
24+
- name: Build with Maven
25+
run: mvn -V -B package site
26+

.travis.yml

-25
This file was deleted.

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
master: [![Build Status](https://travis-ci.org/x-stream/xstream.svg?branch=master)](https://travis-ci.org/x-stream/xstream) [![Coverage Status](https://coveralls.io/repos/github/x-stream/xstream/badge.svg?branch=master)](https://coveralls.io/github/x-stream/xstream?branch=master)
1+
master: [![CI with Maven](https://github.com/x-stream/xstream/workflows/CI%20with%20Maven/badge.svg)](https://github.com/x-stream/xstream/actions?query=workflow%3A%22CI+with+Maven%22) [![Coverage Status](https://coveralls.io/repos/github/x-stream/xstream/badge.svg?branch=master)](https://coveralls.io/github/x-stream/xstream?branch=master)
22
v-1.4.x: [![Build Status](https://travis-ci.org/x-stream/xstream.svg?branch=v-1.4.x)](https://travis-ci.org/x-stream/xstream) [![Coverage Status](https://coveralls.io/repos/github/x-stream/xstream/badge.svg?branch=v-1.4.x)](https://coveralls.io/github/x-stream/xstream?branch=v-1.4.x)
33

44
- - - -
@@ -18,6 +18,7 @@ includes:
1818
* [JavaDoc](http://x-stream.github.io/javadoc/index.html)
1919
* [Change History](http://x-stream.github.io/changes.html)
2020
* [Frequently Asked Questions](http://x-stream.github.io/faq.html)
21+
* [Security](http://x-stream.github.io/security.html)
2122

2223
## Source
2324
The complete source for XStream is bundled in the -src archive. This includes:

README.txt

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ includes:
2121
* JavaDoc
2222
* Change History
2323
* Frequently Asked Questions
24+
* Security
2425

2526
--[ Source ]-------------------------------------------------
2627

0 commit comments

Comments
 (0)