Skip to content

Commit c711fa4

Browse files
committed
first commit to github
0 parents  commit c711fa4

File tree

254 files changed

+52439
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

254 files changed

+52439
-0
lines changed

.gitignore

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
*~
2+
*#
3+
.#*
4+
**/*.iml
5+
**/*.bak
6+
**/configfwkdebug.xml
7+
**/.idea
8+
target/*
9+
target
10+
**/.classpath
11+
**/.project
12+
**/velocity.log*
13+
.classpath
14+
.project
15+
.settings
16+
**/.settings
17+
**/.settings/*
18+
.pydevproject
19+
*.log
20+
pom.xml.versionsBackup
21+
release.properties
22+
**/pom.xml.releaseBackup
23+
.flattened-pom.xml
24+
**/lifecycle-config.xml
25+
**/lifecycle-config.xml.lok
26+
.mvn/maven.config
27+
**/*$py.class
28+
**/*.pyc

.mvn/maven.config-template

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-Dunit-test-wlst-dir=/scratch/jcslcm/jcs122121

CONTRIBUTING.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# [Contributing](http://github.com/oracle/wls-deploy/blob/master/CONTRIBUTING.md)
2+
Oracle welcomes contributions to this repository from anyone.
3+
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.
5+
6+
If you have any questions about a possible submission, feel free to open an issue too.
7+
8+
## [Contributing to the Oracle WLS 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).
10+
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.
12+
13+
Signed-off-by: Your Name <you@example.org>
14+
15+
This can be automatically added to pull requests by committing with:
16+
17+
git commit --signoff
18+
19+
Only pull requests from committers that can be verified as having signed the OCA can be accepted.
20+
21+
### [Pull request process](http://github.com/oracle/wls-deploy/blob/master/CONTRIBUTING.md)
22+
23+
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.

LICENSE.txt

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
2+
3+
The Universal Permissive License (UPL), Version 1.0
4+
5+
Subject to the condition set forth below, permission is hereby granted to any
6+
person obtaining a copy of this software, associated documentation and/or data
7+
(collectively the "Software"), free of charge and under any and all copyright
8+
rights in the Software, and any and all patent rights owned or freely
9+
licensable by each licensor hereunder covering either (i) the unmodified
10+
Software as contributed to or provided by such licensor, or (ii) the Larger
11+
Works (as defined below), to deal in both
12+
13+
(a) the Software, and
14+
(b) any piece of software and/or hardware listed in the lrgrwrks.txt file
15+
if one is included with the Software (each a “Larger Work” to which
16+
the Software is contributed by such licensors), without restriction,
17+
including without limitation the rights to copy, create derivative
18+
works of, display, perform, and distribute the Software and make,
19+
use, sell, offer for sale, import, export, have made, and have sold
20+
the Software and the Larger Work(s), and to sublicense the foregoing
21+
rights on either these or other terms.
22+
23+
This license is subject to the following condition:
24+
The above copyright notice and either this complete permission notice or at
25+
a minimum a reference to the UPL must be included in all copies or substantial
26+
portions of the Software.
27+
28+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
30+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
31+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
32+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
33+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
34+
THE SOFTWARE.
35+
36+
===== The Antlr4 License Statement =====
37+
38+
[The "BSD 3-clause license"]
39+
Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
40+
41+
Redistribution and use in source and binary forms, with or without
42+
modification, are permitted provided that the following conditions
43+
are met:
44+
45+
1. Redistributions of source code must retain the above copyright
46+
notice, this list of conditions and the following disclaimer.
47+
2. Redistributions in binary form must reproduce the above copyright
48+
notice, this list of conditions and the following disclaimer in the
49+
documentation and/or other materials provided with the distribution.
50+
3. Neither the name of the copyright holder nor the names of its contributors
51+
may be used to endorse or promote products derived from this software
52+
without specific prior written permission.
53+
54+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
55+
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
56+
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
57+
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
58+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
59+
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
60+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
61+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
62+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
63+
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
64+
65+
=====
66+
67+
MIT License for codepointat.js from https://git.io/codepointat
68+
MIT License for fromcodepoint.js from https://git.io/vDW1m
69+
70+
Copyright Mathias Bynens <https://mathiasbynens.be/>
71+
72+
Permission is hereby granted, free of charge, to any person obtaining
73+
a copy of this software and associated documentation files (the
74+
"Software"), to deal in the Software without restriction, including
75+
without limitation the rights to use, copy, modify, merge, publish,
76+
distribute, sublicense, and/or sell copies of the Software, and to
77+
permit persons to whom the Software is furnished to do so, subject to
78+
the following conditions:
79+
80+
The above copyright notice and this permission notice shall be
81+
included in all copies or substantial portions of the Software.
82+
83+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
84+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
85+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
86+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
87+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
88+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
89+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)