17
17
Contributing to [ Apache Maven Compiler Plugin] ( https://maven.apache.org/plugins/maven-compiler-plugin/ )
18
18
======================
19
19
20
- [ ![ ASF Jira] ( https://img.shields.io/endpoint?url=https%3A%2F%2Fmaven.apache.org%2Fbadges%2Fasf_jira-MCOMPILER.json )] [ jira ]
21
20
[ ![ Apache License, Version 2.0, January 2004] ( https://img.shields.io/github/license/apache/maven.svg?label=License )] [ license ]
21
+ [ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.apache.maven.plugins/maven-compiler-plugin.svg?label=Maven%20Central&versionPrefix=3. )] ( https://search.maven.org/artifact/org.apache.maven.plugins/maven-compiler-plugin )
22
22
[ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.apache.maven.plugins/maven-compiler-plugin.svg?label=Maven%20Central )] ( https://search.maven.org/artifact/org.apache.maven.plugins/maven-compiler-plugin )
23
- [ ![ 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/plugins/maven-compiler-plugin/README.md )
23
+ [ ![ Reproducible Builds] ( https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/jvm-repo-rebuild/reproducible-central/master/content/org/apache/maven/plugins/maven-compiler-plugin/badge.json )] ( https://github.com/jvm-repo-rebuild/reproducible-central/blob/master/content/org/apache/maven/plugins/maven-compiler-plugin/README.md )
24
24
[ ![ Jenkins Status] ( https://img.shields.io/jenkins/s/https/ci-maven.apache.org/job/Maven/job/maven-box/job/maven-compiler-plugin/job/master.svg? )] [ build ]
25
25
[ ![ Jenkins tests] ( https://img.shields.io/jenkins/t/https/ci-maven.apache.org/job/Maven/job/maven-box/job/maven-compiler-plugin/job/master.svg? )] [ test-results ]
26
26
@@ -34,7 +34,6 @@ things.
34
34
Getting Started
35
35
---------------
36
36
37
- + Make sure you have a [ JIRA account] ( https://issues.apache.org/jira/ ) .
38
37
+ Make sure you have a [ GitHub account] ( https://github.com/signup/free ) .
39
38
+ If you're planning to implement a new feature, it makes sense to discuss your changes
40
39
on the [ dev list] [ ml-list ] first.
@@ -60,37 +59,22 @@ There are some guidelines which will make applying PRs easier for us:
60
59
+ Create minimal diffs - disable on save actions like reformat source code or organize imports.
61
60
If you feel the source code should be reformatted, create a separate PR for this change.
62
61
+ 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
- [MCOMPILER-XXX] - Subject of the JIRA Ticket
66
- Optional supplemental description.
67
- ```
68
62
+ Make sure you have added the necessary tests (JUnit/IT) for your changes.
69
63
+ Run all the tests with ` mvn -Prun-its verify ` to assure nothing else was accidentally broken.
70
64
+ 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.
72
65
73
66
If you plan to contribute on a regular basis, please consider filing a [ contributor license agreement] [ cla ] .
74
67
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
-
82
68
Additional Resources
83
69
--------------------
84
70
85
71
+ [ Contributing patches] ( https://maven.apache.org/guides/development/guide-maven-development.html#Creating_and_submitting_a_patch )
86
- + [ Apache Maven Compiler JIRA project page] [ jira ]
87
72
+ [ Contributor License Agreement] [ cla ]
88
73
+ [ General GitHub documentation] ( https://help.github.com/ )
89
74
+ [ GitHub pull request documentation] ( https://help.github.com/send-pull-requests/ )
90
75
+ [ Apache Maven Twitter Account] ( https://twitter.com/ASFMavenProject )
91
76
+ #Maven IRC channel on freenode.org
92
77
93
- [ jira ] : https://issues.apache.org/jira/projects/MCOMPILER/
94
78
[ license ] : https://www.apache.org/licenses/LICENSE-2.0
95
79
[ ml-list ] : http://maven.apache.org/mailing-lists.html
96
80
[ code-style ] : https://maven.apache.org/developers/conventions/code.html
0 commit comments