Skip to content

Commit d906852

Browse files
committed
Merge branch 'develop'
2 parents 6d6dde5 + 2165451 commit d906852

File tree

22 files changed

+453
-42
lines changed

22 files changed

+453
-42
lines changed

.hgignore

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

LICENSE.txt

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,25 @@
1-
Copyright © 2020, Oracle and/or its affiliates.
1+
BSD 2-Clause License
22

3-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
3+
Copyright (c) 2020, Oracle and/or its affiliates.
4+
All rights reserved.
45

5-
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
68

7-
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
9+
1. Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
811

9-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
12+
2. Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# The Oracle Labs Configuration and Utilities Toolkit
32

43
The OLCUT is a group of utilities that facilitate making pluggable software
@@ -19,6 +18,8 @@ the needs of a varied user-base.
1918
## Maven Coordinates
2019
Please check back soon as we are working out the logistics for publishing to Maven Central.
2120

21+
[![wercker status](https://app.wercker.com/status/1615cf1d81ce750e730d50cec2309458/s/master "wercker status")](https://app.wercker.com/project/byKey/1615cf1d81ce750e730d50cec2309458)
22+
2223
## Configuration System
2324

2425
The OLCUT [Configuration System](README-Configuration.md) uses runtime

olcut-config-edn/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,15 @@
7575
</dependencies>
7676

7777
<build>
78+
<resources>
79+
<resource>
80+
<directory>${project.basedir}/..</directory>
81+
<includes>
82+
<include>LICENSE.txt</include>
83+
</includes>
84+
<targetPath>META-INF</targetPath>
85+
</resource>
86+
</resources>
7887
<plugins>
7988
<plugin>
8089
<groupId>org.apache.maven.plugins</groupId>
File renamed without changes.

olcut-config-jini/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,15 @@
9292
<skipJiniTests>true</skipJiniTests>
9393
</properties>
9494
<build>
95+
<resources>
96+
<resource>
97+
<directory>${project.basedir}/..</directory>
98+
<includes>
99+
<include>LICENSE.txt</include>
100+
</includes>
101+
<targetPath>META-INF</targetPath>
102+
</resource>
103+
</resources>
95104
<plugins>
96105
<plugin>
97106
<groupId>org.apache.maven.plugins</groupId>

olcut-config-json/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,15 @@
6868
</dependencies>
6969

7070
<build>
71+
<resources>
72+
<resource>
73+
<directory>${project.basedir}/..</directory>
74+
<includes>
75+
<include>LICENSE.txt</include>
76+
</includes>
77+
<targetPath>META-INF</targetPath>
78+
</resource>
79+
</resources>
7180
<plugins>
7281
<plugin>
7382
<groupId>org.apache.maven.plugins</groupId>

olcut-config-json/src/main/java/com/oracle/labs/mlrg/olcut/config/json/JsonProvenanceDeserializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
import java.util.Map.Entry;
5050

5151
/**
52-
*
52+
* Deserialization class to convert JSON into {@link MarshalledProvenance}.
5353
*/
5454
public class JsonProvenanceDeserializer extends StdDeserializer<MarshalledProvenance> {
5555

olcut-config-json/src/main/java/com/oracle/labs/mlrg/olcut/config/json/JsonProvenanceModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import com.oracle.labs.mlrg.olcut.provenance.io.MarshalledProvenance;
3434

3535
/**
36-
*
36+
* The {@link MarshalledProvenance} serialization module.
3737
*/
3838
public class JsonProvenanceModule extends SimpleModule {
3939
static final String MARSHALLED_CLASS = "marshalled-class";

0 commit comments

Comments
 (0)