File tree 5 files changed +105
-0
lines changed
5 files changed +105
-0
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : " maven"
4
+ target-branch : " master"
5
+ directory : " /"
6
+ schedule :
7
+ interval : " weekly"
8
+ - package-ecosystem : " github-actions"
9
+ target-branch : " master"
10
+ directory : " /"
11
+ schedule :
12
+ interval : " weekly"
13
+ - package-ecosystem : " maven"
14
+ target-branch : " jetty.toolchain.parent"
15
+ directory : " /"
16
+ schedule :
17
+ interval : " weekly"
18
+ - package-ecosystem : " github-actions"
19
+ target-branch : " jetty.toolchain.parent"
20
+ directory : " /"
21
+ schedule :
22
+ interval : " weekly"
Original file line number Diff line number Diff line change
1
+ # Number of days of inactivity before an issue becomes stale
2
+ daysUntilStale : 365
3
+ # Number of days of inactivity before a stale issue is closed
4
+ daysUntilClose : 30
5
+ # Issues with these labels will never be considered stale
6
+ exemptLabels :
7
+ - Pinned
8
+ - Security
9
+ - Specification
10
+ - TCK
11
+ # Label to use when marking an issue as stale
12
+ staleLabel : Stale
13
+ # Comment to post when marking an issue as stale. Set to `false` to disable
14
+ markComment : >
15
+ This issue has been automatically marked as stale because it has been a
16
+ full year without activity. It will be closed if no further activity occurs.
17
+ Thank you for your contributions.
18
+ # Comment to post when closing a stale issue. Set to `false` to disable
19
+ closeComment : >
20
+ This issue has been closed due to it having no activity.
Original file line number Diff line number Diff line change
1
+ # Licensed to the Apache Software Foundation (ASF) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The ASF licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+ name : GitHub CI
19
+
20
+ on :
21
+ push :
22
+ branches :
23
+ - ' parent-pom'
24
+ pull_request :
25
+
26
+ jobs :
27
+ build :
28
+
29
+ strategy :
30
+ matrix :
31
+ os : [ubuntu-latest]
32
+ java : [17]
33
+ jdk : [temurin]
34
+ fail-fast : false
35
+
36
+ runs-on : ${{ matrix.os }}
37
+
38
+ steps :
39
+ - name : Checkout
40
+ uses : actions/checkout@v4
41
+
42
+ - name : Set up JDK
43
+ uses : actions/setup-java@v4
44
+ with :
45
+ distribution : ${{ matrix.jdk }}
46
+ java-version : ${{ matrix.java }}
47
+ cache : ' maven'
48
+
49
+ - name : Build with Maven
50
+ run : mvn install javadoc:javadoc -e -B -V
Original file line number Diff line number Diff line change
1
+ .classpath
2
+ .settings
3
+ .project
4
+ settings.xml
5
+ target
6
+ * .log
7
+ * .patch
8
+ * .diff
9
+ * .swp
10
+ * .DS_Store
11
+ * .iml
12
+ * .idea
Original file line number Diff line number Diff line change
1
+ Example of a jetty-parent-pom
You can’t perform that action at this time.
0 commit comments