Skip to content

Commit a07e5e5

Browse files
committed
Add copyrights and licesnses to all java and script files
1 parent eed8b3f commit a07e5e5

Some content is hidden

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

46 files changed

+185
-113
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,6 @@ applying selected patches).
5050
- Then, execute `imagebuilder help` to get the help screen.
5151
- You can execute the JAR directly using the command `java -cp "./imagebuilder-0.1-SNAPSHOT.jar" com.oracle.weblogicx.imagebuilder.cli.CLIDriver help`.
5252
- After you are familiar with the commands, you will be able to create and update WebLogic Docker images.
53+
54+
## Copyright
55+
Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.

site/cache.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,7 @@ Commands:
5858
```
5959
imagebuilder cache deleteEntry --key xyz_123
6060
```
61+
62+
## Copyright
63+
Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
64+

site/create-image.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,6 @@ The commands below assume that all the required JDK, WLS or FMW (WebLogic infras
8181
```
8282
imagebuilder cache addInstaller --type jdk --version 8u202 --path /local/path/to/jdk.gz
8383
```
84+
## Copyright
85+
Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
86+

site/update-image.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,7 @@ Update WebLogic docker image with selected patches
4848
imagebuilder update --fromImage sample:1.0 --tag sample:1.1 --user [email protected] --password hello --patches 12345678,p87654321
4949
```
5050
The patch numbers may or may not start with '`p`'.
51+
52+
## Copyright
53+
Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
54+

src/main/java/com/oracle/weblogicx/imagebuilder/api/FileResolver.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
/* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved. */
1+
/* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
2+
*
3+
* Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
4+
*/
25

36
package com.oracle.weblogicx.imagebuilder.api;
47

src/main/java/com/oracle/weblogicx/imagebuilder/api/meta/CacheStore.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
/* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved. */
1+
/* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
2+
*
3+
* Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
4+
*/
25

36
package com.oracle.weblogicx.imagebuilder.api.meta;
47

src/main/java/com/oracle/weblogicx/imagebuilder/api/model/AbstractFile.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
/* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved. */
2-
1+
/* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
2+
*
3+
* Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
4+
*/
35
package com.oracle.weblogicx.imagebuilder.api.model;
46

57
import com.oracle.weblogicx.imagebuilder.api.FileResolver;

src/main/java/com/oracle/weblogicx/imagebuilder/api/model/CachePolicy.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
/* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved. */
1+
/* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
2+
*
3+
* Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
4+
*/
25

36
package com.oracle.weblogicx.imagebuilder.api.model;
47

src/main/java/com/oracle/weblogicx/imagebuilder/api/model/CommandResponse.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
/* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved. */
1+
/* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
2+
*
3+
* Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
4+
*/
25

36
package com.oracle.weblogicx.imagebuilder.api.model;
47

src/main/java/com/oracle/weblogicx/imagebuilder/api/model/DomainType.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
/* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved. */
1+
/* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
2+
*
3+
* Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
4+
*/
25

36
package com.oracle.weblogicx.imagebuilder.api.model;
47

0 commit comments

Comments
 (0)