File tree 4 files changed +29
-26
lines changed
4 files changed +29
-26
lines changed Original file line number Diff line number Diff line change
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
+
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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 )
2
2
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 )
3
3
4
4
- - - -
@@ -18,6 +18,7 @@ includes:
18
18
* [ JavaDoc] ( http://x-stream.github.io/javadoc/index.html )
19
19
* [ Change History] ( http://x-stream.github.io/changes.html )
20
20
* [ Frequently Asked Questions] ( http://x-stream.github.io/faq.html )
21
+ * [ Security] ( http://x-stream.github.io/security.html )
21
22
22
23
## Source
23
24
The complete source for XStream is bundled in the -src archive. This includes:
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ includes:
21
21
* JavaDoc
22
22
* Change History
23
23
* Frequently Asked Questions
24
+ * Security
24
25
25
26
--[ Source ]-------------------------------------------------
26
27
You can’t perform that action at this time.
0 commit comments