Skip to content

Commit a3aedc6

Browse files
garyrussellartembilan
authored andcommitted
Revise Issue Template etc.
1 parent 8b2cc61 commit a3aedc6

File tree

8 files changed

+86
-32
lines changed

8 files changed

+86
-32
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: 'type: bug, status: waiting-for-triage'
6+
assignees: ''
7+
8+
---
9+
10+
**In what version(s) of Spring AMQP are you seeing this issue?**
11+
12+
For example:
13+
14+
2.4.2
15+
16+
Between 2.3.0 and 2.4.2
17+
18+
**Describe the bug**
19+
20+
A clear and concise description of what the bug is.
21+
Do not create an issue to ask a question; see below.
22+
23+
**To Reproduce**
24+
25+
Steps to reproduce the behavior.
26+
27+
**Expected behavior**
28+
29+
A clear and concise description of what you expected to happen.
30+
31+
**Sample**
32+
33+
A link to a GitHub repository with a [minimal, reproducible, sample](https://stackoverflow.com/help/minimal-reproducible-example).
34+
35+
Reports that include a sample will take priority over reports that do not.
36+
At times, we may require a sample, so it is good to try and include a sample up front.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Community Support
4+
url: https://stackoverflow.com/questions/tagged/spring-amqp
5+
about: Please ask and answer questions on StackOverflow with the tag spring-amqp, or use the Discussions tab above
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: 'status: waiting-for-triage, type: enhancement'
6+
assignees: ''
7+
8+
---
9+
10+
**Expected Behavior**
11+
12+
<!--- Tell us how it should work -->
13+
14+
**Current Behavior**
15+
16+
<!--- Explain the difference from current behavior -->
17+
18+
**Context**
19+
20+
<!---
21+
How has this issue affected you?
22+
What are you trying to accomplish?
23+
What other alternatives have you considered?
24+
Are you aware of any workarounds?
25+
-->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<!--
2-
Thanks for contributing to Spring AMQP. Please provide a brief description of your pull-request and reference any related issue numbers (prefix references with #).
2+
Thanks for contributing to Spring AMQP.
3+
Please provide a brief description of your pull-request and reference any related issue numbers (prefix references with #).
34
45
See the [Contributor Guidelines for more information](https://github.com/spring-projects/spring-amqp/blob/main/CONTRIBUTING.adoc).
56
-->
File renamed without changes.

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ Spring AMQP [<img src="https://build.spring.io/plugins/servlet/wittified/build-s
33

44
This project provides support for using Spring and Java with [AMQP 0.9.1](https://www.rabbitmq.com/amqp-0-9-1-reference.html), and in particular [RabbitMQ](https://www.rabbitmq.com/).
55

6+
# Code of Conduct
7+
8+
Please see our [Code of conduct](https://github.com/spring-projects/.github/blob/master/CODE_OF_CONDUCT.md).
9+
10+
# Reporting Security Vulnerabilities
11+
12+
Please see our [Security policy](https://github.com/spring-projects/spring-amqp/security/policy).
13+
614
# Checking out and Building
715

816
To check out the project from [GitHub](https://github.com/SpringSource/spring-amqp) and build from source using [Gradle](https://gradle.org/), do the following:
@@ -119,4 +127,4 @@ None of these is essential for a pull request, but they will all help. They can
119127

120128
# License
121129

122-
Spring AMQP is released under the terms of the Apache Software License Version 2.0 (see license.txt).
130+
Spring AMQP is released under the terms of the Apache Software License Version 2.0 (see LICENSE.txt).

build.gradle

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,11 +323,14 @@ subprojects { subproject ->
323323
}
324324

325325
from("${rootProject.projectDir}/src/dist") {
326-
include 'license.txt'
327326
include 'notice.txt'
328327
into 'META-INF'
329328
expand(copyright: new Date().format('yyyy'), version: project.version)
330329
}
330+
from("${rootProject.projectDir}") {
331+
include 'LICENSE.txt'
332+
into 'META-INF'
333+
}
331334
}
332335

333336
check.dependsOn javadoc
@@ -656,12 +659,15 @@ task distZip(type: Zip, dependsOn: [docsZip, schemaZip]) {
656659

657660
from('src/dist') {
658661
include 'README.md'
659-
include 'apache-license.txt'
660-
include 'epl-license.txt'
661662
include 'notice.txt'
662663
into "${baseDir}"
663664
}
664665

666+
from("$project.rootDir") {
667+
include 'LICENSE.txt'
668+
into "${baseDir}"
669+
}
670+
665671
from(zipTree(docsZip.archivePath)) {
666672
into "${baseDir}/docs"
667673
}

0 commit comments

Comments
 (0)