Skip to content

Commit 555703c

Browse files
authoredSep 29, 2021
Update project root files based on updated templates (#981)
1 parent b0cbec5 commit 555703c

File tree

4 files changed

+106
-78
lines changed

4 files changed

+106
-78
lines changed
 

‎CONTRIBUTING.md

+44-17
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,55 @@
1-
# [Contributing](http://github.com/oracle/wls-deploy/blob/master/CONTRIBUTING.md)
2-
Oracle welcomes contributions to this repository from anyone.
1+
# Contributing to this repository
32

4-
If you want to submit a pull request to fix a bug or enhance an existing feature, please first open an issue and link to that issue when you submit your pull request.
3+
We welcome your contributions! There are multiple ways to contribute.
54

6-
If you have any questions about a possible submission, feel free to open an issue too.
5+
## Opening issues
76

8-
## [Contributing to the WebLogic Deploy repository](http://github.com/oracle/wls-deploy/blob/master/CONTRIBUTING.md)
9-
Pull requests can be made under [The Oracle Contributor Agreement](https://www.oracle.com/technetwork/community/oca-486395.html) (OCA).
7+
For bugs or enhancement requests, please file a GitHub issue unless it's
8+
security related. When filing a bug remember that the better written the bug is,
9+
the more likely it is to be fixed. If you think you've found a security
10+
vulnerability, do not raise a GitHub issue and follow the instructions in our
11+
[security policy](./SECURITY.md).
1012

11-
For pull requests to be accepted, the bottom of your commit message must have the following line using your name and e-mail address as it appears in the OCA Signatories list.
13+
## Contributing code
1214

13-
Signed-off-by: Your Name <you@example.org>
15+
We welcome your code contributions. Before submitting code via a pull request,
16+
you will need to have signed the [Oracle Contributor Agreement][OCA] (OCA) and
17+
your commits need to include the following line using the name and e-mail
18+
address you used to sign the OCA:
1419

15-
This can be automatically added to pull requests by committing with:
20+
```text
21+
Signed-off-by: Your Name <you@example.org>
22+
```
1623

17-
git commit --signoff
24+
This can be automatically added to pull requests by committing with `--sign-off`
25+
or `-s`, e.g.
1826

19-
Only pull requests from committers that can be verified as having signed the OCA can be accepted.
27+
```text
28+
git commit --signoff
29+
```
2030

21-
### [Pull request process](http://github.com/oracle/wls-deploy/blob/master/CONTRIBUTING.md)
31+
Only pull requests from committers that can be verified as having signed the OCA
32+
can be accepted.
2233

34+
## Pull request process
35+
36+
1. Ensure there is an issue created to track and discuss the fix or enhancement
37+
you intend to submit.
2338
1. Fork this repository
24-
2. Create a branch in your fork to implement the changes. We recommend using the issue number as part of your branch name, e.g. 1234-fixes
25-
3. Ensure that any documentation is updated with the changes that are required by your fix.
26-
4. Ensure that any samples are updated if the base image has been changed.
27-
5. Squash your branch changes into a single commit.
28-
6. Submit the pull request. Do not leave the pull request blank. Explain exactly what your changes are meant to do and provide simple steps on how to validate your changes. Ensure that you reference the issue you created as well. We will assign someone to review the pull request before it is merged.
39+
1. Create a branch in your fork to implement the changes. We recommend using
40+
the issue number as part of your branch name, e.g. `1234-fixes`
41+
1. Ensure that any documentation is updated with the changes that are required
42+
by your change.
43+
1. Ensure that any samples are updated if the base image has been changed.
44+
1. Submit the pull request. *Do not leave the pull request blank*. Explain exactly
45+
what your changes are meant to do and provide simple steps on how to validate
46+
your changes. Ensure that you reference the issue you created as well.
47+
1. We will assign the pull request to 2-3 people for review before it is merged.
48+
49+
## Code of conduct
50+
51+
Follow the [Golden Rule](https://en.wikipedia.org/wiki/Golden_Rule). If you'd
52+
like more specific guidelines, see the [Contributor Covenant Code of Conduct][COC].
53+
54+
[OCA]: https://oca.opensource.oracle.com
55+
[COC]: https://www.contributor-covenant.org/version/1/4/code-of-conduct/

‎LICENSE.txt

+2-57
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Copyright (c) 2017, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
1+
Copyright (c) 2021 Oracle and/or its affiliates.
22

3-
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
The Universal Permissive License (UPL), Version 1.0
44

55
Subject to the condition set forth below, permission is hereby granted to any
66
person obtaining a copy of this software, associated documentation and/or data
@@ -33,58 +33,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3333
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3434
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3535
SOFTWARE.
36-
37-
===== The Antlr4 License Statement =====
38-
39-
[The "BSD 3-clause license"]
40-
Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
41-
42-
Redistribution and use in source and binary forms, with or without
43-
modification, are permitted provided that the following conditions
44-
are met:
45-
46-
1. Redistributions of source code must retain the above copyright
47-
notice, this list of conditions and the following disclaimer.
48-
2. Redistributions in binary form must reproduce the above copyright
49-
notice, this list of conditions and the following disclaimer in the
50-
documentation and/or other materials provided with the distribution.
51-
3. Neither the name of the copyright holder nor the names of its contributors
52-
may be used to endorse or promote products derived from this software
53-
without specific prior written permission.
54-
55-
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
56-
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
57-
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
58-
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
59-
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
60-
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
61-
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
62-
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
63-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
64-
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65-
66-
=====
67-
68-
MIT License for codepointat.js from https://git.io/codepointat
69-
MIT License for fromcodepoint.js from https://git.io/vDW1m
70-
71-
Copyright Mathias Bynens <https://mathiasbynens.be/>
72-
73-
Permission is hereby granted, free of charge, to any person obtaining
74-
a copy of this software and associated documentation files (the
75-
"Software"), to deal in the Software without restriction, including
76-
without limitation the rights to use, copy, modify, merge, publish,
77-
distribute, sublicense, and/or sell copies of the Software, and to
78-
permit persons to whom the Software is furnished to do so, subject to
79-
the following conditions:
80-
81-
The above copyright notice and this permission notice shall be
82-
included in all copies or substantial portions of the Software.
83-
84-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
85-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
86-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
87-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
88-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
89-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
90-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

‎README.md

+20-4
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,36 @@ WDT provides several single-purpose tools, all exposed as shell scripts (for bot
3636
WebLogic Deploy Tooling version and release information can be found [here](https://github.com/oracle/weblogic-deploy-tooling/releases).
3737
***
3838

39-
# Documentation
39+
## Documentation
4040

4141
Documentation for WebLogic Deploy Tooling is [available here](https://oracle.github.io/weblogic-deploy-tooling/).
4242

4343
This documentation includes information for users and for developers.
4444

45-
# Related projects
45+
## Related projects
4646

4747
* [WebLogic Kubernetes Operator](https://oracle.github.io/weblogic-kubernetes-operator/)
4848
* [WebLogic Image Tool](https://github.com/oracle/weblogic-image-tool)
4949
* [WebLogic Monitoring Exporter](https://github.com/oracle/weblogic-monitoring-exporter)
5050
* [WebLogic Logging Exporter](https://github.com/oracle/weblogic-logging-exporter)
5151
* [WebLogic Remote Console](https://github.com/oracle/weblogic-remote-console)
5252

53-
# Contributing
53+
## Contributing
5454

55-
Those who wish to contribute to the WebLogic Deploy Tooling code will find useful information [here](CONTRIBUTING.md).
55+
<!-- If your project has specific contribution requirements, update the
56+
CONTRIBUTING.md file to ensure those requirements are clearly explained. -->
57+
58+
This project welcomes contributions from the community. Before submitting a pull
59+
request, please [review our contribution guide](./CONTRIBUTING.md).
60+
61+
## Security
62+
63+
Please consult the [security guide](./SECURITY.md) for our responsible security
64+
vulnerability disclosure process.
65+
66+
## License
67+
68+
Copyright (c) 2021 Oracle and/or its affiliates.
69+
70+
Released under the Universal Permissive License v1.0 as shown at
71+
<https://oss.oracle.com/licenses/upl/>.

‎SECURITY.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Reporting security vulnerabilities
2+
3+
Oracle values the independent security research community and believes that
4+
responsible disclosure of security vulnerabilities helps us ensure the security
5+
and privacy of all our users.
6+
7+
Please do NOT raise a GitHub Issue to report a security vulnerability. If you
8+
believe you have found a security vulnerability, please submit a report to
9+
[secalert_us@oracle.com][1] preferably with a proof of concept. Please review
10+
some additional information on [how to report security vulnerabilities to Oracle][2].
11+
We encourage people who contact Oracle Security to use email encryption using
12+
[our encryption key][3].
13+
14+
We ask that you do not use other channels or contact the project maintainers
15+
directly.
16+
17+
Non-vulnerability related security issues including ideas for new or improved
18+
security features are welcome on GitHub Issues.
19+
20+
## Security updates, alerts and bulletins
21+
22+
Security updates will be released on a regular cadence. Many of our projects
23+
will typically release security fixes in conjunction with the
24+
[Oracle Critical Patch Update][3] program. Security updates are released on the
25+
Tuesday closest to the 17th day of January, April, July and October. A pre-release
26+
announcement will be published on the Thursday preceding each release. Additional
27+
information, including past advisories, is available on our [security alerts][4]
28+
page.
29+
30+
## Security-related information
31+
32+
We will provide security related information such as a threat model, considerations
33+
for secure use, or any known security issues in our documentation. Please note
34+
that labs and sample code are intended to demonstrate a concept and may not be
35+
sufficiently hardened for production use.
36+
37+
[1]: mailto:secalert_us@oracle.com
38+
[2]: https://www.oracle.com/corporate/security-practices/assurance/vulnerability/reporting.html
39+
[3]: https://www.oracle.com/security-alerts/encryptionkey.html
40+
[4]: https://www.oracle.com/security-alerts/

0 commit comments

Comments
 (0)
Please sign in to comment.