Skip to content

Commit eb829b8

Browse files
authored
Enable Github Issues (1.9.x branch)
1 parent c88577d commit eb829b8

File tree

4 files changed

+58
-22
lines changed

4 files changed

+58
-22
lines changed

.github/pull_request_template.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Following this checklist to help us incorporate your
2+
contribution quickly and easily:
3+
4+
- [ ] Your pull request should address just one issue, without pulling in other changes.
5+
- [ ] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
6+
- [ ] Each commit in the pull request should have a meaningful subject line and body.
7+
Note that commits might be squashed by a maintainer on merge.
8+
- [ ] Write unit tests that match behavioral changes, where the tests fail if the changes to the runtime are not applied.
9+
This may not always be possible but is a best-practice.
10+
- [ ] Run `mvn verify` to make sure basic checks pass.
11+
A more thorough check will be performed on your pull request automatically.
12+
- [ ] You have run the integration tests successfully (`mvn -Prun-its verify`).
13+
14+
If your pull request is about ~20 lines of code you don't need to sign an
15+
[Individual Contributor License Agreement](https://www.apache.org/licenses/icla.pdf) if you are unsure
16+
please ask on the developers list.
17+
18+
To make clear that you license your contribution under
19+
the [Apache License Version 2.0, January 2004](http://www.apache.org/licenses/LICENSE-2.0)
20+
you have to acknowledge this by using the following check-box.
21+
22+
- [ ] I hereby declare this contribution to be licenced under the [Apache License Version 2.0, January 2004](http://www.apache.org/licenses/LICENSE-2.0)
23+
- [ ] In any other case, please file an [Apache Individual Contributor License Agreement](https://www.apache.org/licenses/icla.pdf).
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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: Release Drafter
19+
on:
20+
push:
21+
branches:
22+
- maven-resolver-1.9.x
23+
workflow_dispatch:
24+
25+
jobs:
26+
update_release_draft:
27+
uses: apache/maven-gh-actions-shared/.github/workflows/release-drafter.yml@v4
28+
with:
29+
config-name: 'release-drafter-3.x.yml'

README.md

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,14 @@
1717
Contributing to [Apache Maven Artifact Resolver](https://maven.apache.org/resolver/)
1818
======================
1919

20-
[![ASF Jira](https://img.shields.io/endpoint?url=https%3A%2F%2Fmaven.apache.org%2Fbadges%2Fasf_jira-MRESOLVER.json)][jira]
2120
[![Apache License, Version 2.0, January 2004](https://img.shields.io/github/license/apache/maven.svg?label=License)][license]
2221
[![Maven Central](https://img.shields.io/maven-central/v/org.apache.maven.resolver/maven-resolver.svg?label=Maven%20Central)](https://search.maven.org/artifact/org.apache.maven.resolver/maven-resolver)
2322
[![Reproducible Builds](https://img.shields.io/badge/Reproducible_Builds-ok-green?labelColor=blue)](https://github.com/jvm-repo-rebuild/reproducible-central/blob/master/content/org/apache/maven/resolver/maven-resolver/README.md)
2423
[![Jenkins Status](https://img.shields.io/jenkins/s/https/ci-maven.apache.org/job/Maven/job/maven-box/job/maven-resolver/job/master.svg)][build]
2524
[![Jenkins tests](https://img.shields.io/jenkins/t/https/ci-maven.apache.org/job/Maven/job/maven-box/job/maven-resolver/job/master.svg)][test-results]
2625

2726

28-
You have found a bug or you have an idea for a cool new feature? Contributing
27+
You have found a bug, or you have an idea for a cool new feature? Contributing
2928
code is a great way to give something back to the open source community. Before
3029
you dig right into the code, there are a few guidelines that we need
3130
contributors to follow so that we can have a chance of keeping on top of
@@ -34,7 +33,6 @@ things.
3433
Getting Started
3534
---------------
3635

37-
+ Make sure you have a [JIRA account](https://issues.apache.org/jira/).
3836
+ Make sure you have a [GitHub account](https://github.com/signup/free).
3937
+ If you're planning to implement a new feature, it makes sense to discuss your changes
4038
on the [dev list][ml-list] first.
@@ -60,37 +58,23 @@ There are some guidelines which will make applying PRs easier for us:
6058
+ Create minimal diffs - disable on save actions like reformat source code or organize imports.
6159
If you feel the source code should be reformatted, create a separate PR for this change.
6260
+ Check for unnecessary whitespace with `git diff --check` before committing.
63-
+ Make sure your commit messages are in the proper format. Your commit message should contain the key of the JIRA issue.
64-
```
65-
[MRESOLVER-XXX] - Subject of the JIRA Ticket
66-
Optional supplemental description.
67-
```
6861
+ Make sure you have added the necessary tests (JUnit/IT) for your changes.
6962
+ Run all the tests with `mvn -Prun-its verify` to assure nothing else was accidentally broken.
7063
+ Submit a pull request to the repository in the Apache organization.
71-
+ Update your JIRA ticket and include a link to the pull request in the ticket.
7264

7365
If you plan to contribute on a regular basis, please consider filing a [contributor license agreement][cla].
7466

75-
Making Trivial Changes
76-
----------------------
77-
78-
For changes of a trivial nature to comments and documentation, it is not always
79-
necessary to create a new ticket in JIRA. In this case, it is appropriate to
80-
start the first line of a commit with '(doc)' instead of a ticket number.
81-
8267
Additional Resources
8368
--------------------
8469

8570
+ [Contributing patches](https://maven.apache.org/guides/development/guide-maven-development.html#Creating_and_submitting_a_patch)
86-
+ [Apache Maven Artifact Resolver project page][jira]
8771
+ [Contributor License Agreement][cla]
8872
+ [General GitHub documentation](https://help.github.com/)
8973
+ [GitHub pull request documentation](https://help.github.com/send-pull-requests/)
90-
+ [Apache Maven Twitter Account](https://twitter.com/ASFMavenProject)
91-
+ #Maven IRC channel on freenode.org
74+
+ [Apache Maven X Account](https://x.com/ASFMavenProject)
75+
+ [Apache Maven Bluesky Account](https://bsky.app/profile/maven.apache.org)
76+
+ [Apache Maven Mastodon Account](https://mastodon.social/deck/@ASFMavenProject@fosstodon.org)
9277

93-
[jira]: https://issues.apache.org/jira/projects/MRESOLVER/
9478
[license]: https://www.apache.org/licenses/LICENSE-2.0
9579
[ml-list]: https://maven.apache.org/mailing-lists.html
9680
[code-style]: https://maven.apache.org/developers/conventions/code.html

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@
6969
<url>https://github.com/apache/maven-resolver/tree/${project.scm.tag}</url>
7070
</scm>
7171
<issueManagement>
72-
<system>jira</system>
73-
<url>https://issues.apache.org/jira/browse/MRESOLVER</url>
72+
<system>GitHub Issues</system>
73+
<url>https://github.com/apache/maven-resolver/issues</url>
7474
</issueManagement>
7575
<ciManagement>
7676
<system>Jenkins</system>

0 commit comments

Comments
 (0)