From: Marco Zanon Date: Sun, 24 Dec 2017 21:16:14 +0000 (+0000) Subject: Upgraded copyright information. Also added a LICENSE.MIT.sample file. X-Git-Tag: SVN-to-Git~56 X-Git-Url: https://gitweb.marcozanon.com/?a=commitdiff_plain;h=fd246a2ddffa25a0080faad2fcd432070787bacd;p=Macaco Upgraded copyright information. Also added a LICENSE.MIT.sample file. --- diff --git a/6.x/LICENSE b/6.x/LICENSE index 7eacd8f..40635ba 100644 --- a/6.x/LICENSE +++ b/6.x/LICENSE @@ -1,25 +1,7 @@ Macaco Copyright (c) 2009-2017 Marco Zanon . -Released under MIT license: - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. +Released under MIT license (see LICENSE.MIT.sample for details). Small portions inspired by other projects or web pages. See source code for additional information. diff --git a/6.x/LICENSE.MIT.sample b/6.x/LICENSE.MIT.sample new file mode 100644 index 0000000..8aa2645 --- /dev/null +++ b/6.x/LICENSE.MIT.sample @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) [year] [fullname] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/6.x/src/java/com/marcozanon/macaco/MConstants.java b/6.x/src/java/com/marcozanon/macaco/MConstants.java index a2aec61..24fefd0 100644 --- a/6.x/src/java/com/marcozanon/macaco/MConstants.java +++ b/6.x/src/java/com/marcozanon/macaco/MConstants.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco; diff --git a/6.x/src/java/com/marcozanon/macaco/MException.java b/6.x/src/java/com/marcozanon/macaco/MException.java index dcfb946..c5a50e5 100644 --- a/6.x/src/java/com/marcozanon/macaco/MException.java +++ b/6.x/src/java/com/marcozanon/macaco/MException.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco; diff --git a/6.x/src/java/com/marcozanon/macaco/MInformation.java b/6.x/src/java/com/marcozanon/macaco/MInformation.java index 88c0087..1751a50 100644 --- a/6.x/src/java/com/marcozanon/macaco/MInformation.java +++ b/6.x/src/java/com/marcozanon/macaco/MInformation.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco; @@ -24,8 +24,8 @@ public class MInformation extends MObject { public static String getMacacoCopyrightInformation() { StringBuilder s = new StringBuilder(""); s.append(MInformation.getMacacoFullName() + System.getProperty("line.separator")); - s.append("Copyright (c) 2009-2017 by Marco Zanon." + System.getProperty("line.separator")); - s.append("Released under the MIT license. See LICENSE for additional information." + System.getProperty("line.separator")); + s.append("Copyright (c) 2009-2018 by Marco Zanon." + System.getProperty("line.separator")); + s.append("Released under MIT license (see LICENSE.MIT.sample for details)." + System.getProperty("line.separator")); s.append("Small portions inspired by other projects or web pages. See source code for additional information."); return s.toString(); } diff --git a/6.x/src/java/com/marcozanon/macaco/MObject.java b/6.x/src/java/com/marcozanon/macaco/MObject.java index 2dd4784..a15a532 100644 --- a/6.x/src/java/com/marcozanon/macaco/MObject.java +++ b/6.x/src/java/com/marcozanon/macaco/MObject.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco; diff --git a/6.x/src/java/com/marcozanon/macaco/conversion/MConversionException.java b/6.x/src/java/com/marcozanon/macaco/conversion/MConversionException.java index ab626b2..1f80b7f 100644 --- a/6.x/src/java/com/marcozanon/macaco/conversion/MConversionException.java +++ b/6.x/src/java/com/marcozanon/macaco/conversion/MConversionException.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.conversion; diff --git a/6.x/src/java/com/marcozanon/macaco/conversion/MDateConverter.java b/6.x/src/java/com/marcozanon/macaco/conversion/MDateConverter.java index 93d7ca0..fb211a5 100644 --- a/6.x/src/java/com/marcozanon/macaco/conversion/MDateConverter.java +++ b/6.x/src/java/com/marcozanon/macaco/conversion/MDateConverter.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.conversion; diff --git a/6.x/src/java/com/marcozanon/macaco/conversion/MInvalidConversionFormatException.java b/6.x/src/java/com/marcozanon/macaco/conversion/MInvalidConversionFormatException.java index 98351ac..64ce94c 100644 --- a/6.x/src/java/com/marcozanon/macaco/conversion/MInvalidConversionFormatException.java +++ b/6.x/src/java/com/marcozanon/macaco/conversion/MInvalidConversionFormatException.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.conversion; diff --git a/6.x/src/java/com/marcozanon/macaco/conversion/MLocalDateConverter.java b/6.x/src/java/com/marcozanon/macaco/conversion/MLocalDateConverter.java index a949a24..88671eb 100644 --- a/6.x/src/java/com/marcozanon/macaco/conversion/MLocalDateConverter.java +++ b/6.x/src/java/com/marcozanon/macaco/conversion/MLocalDateConverter.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.conversion; diff --git a/6.x/src/java/com/marcozanon/macaco/conversion/MLocalDateTimeConverter.java b/6.x/src/java/com/marcozanon/macaco/conversion/MLocalDateTimeConverter.java index 4542e4b..0afd755 100644 --- a/6.x/src/java/com/marcozanon/macaco/conversion/MLocalDateTimeConverter.java +++ b/6.x/src/java/com/marcozanon/macaco/conversion/MLocalDateTimeConverter.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.conversion; diff --git a/6.x/src/java/com/marcozanon/macaco/conversion/MNumberConverter.java b/6.x/src/java/com/marcozanon/macaco/conversion/MNumberConverter.java index 63e3033..357a7e9 100644 --- a/6.x/src/java/com/marcozanon/macaco/conversion/MNumberConverter.java +++ b/6.x/src/java/com/marcozanon/macaco/conversion/MNumberConverter.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.conversion; diff --git a/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnection.java b/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnection.java index 52a0b63..0e189a4 100644 --- a/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnection.java +++ b/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnection.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.database; diff --git a/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnectionFailureException.java b/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnectionFailureException.java index e99c72e..064967a 100644 --- a/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnectionFailureException.java +++ b/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnectionFailureException.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.database; diff --git a/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnectionGenerator.java b/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnectionGenerator.java index 263ec69..a2f44d9 100644 --- a/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnectionGenerator.java +++ b/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnectionGenerator.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.database; diff --git a/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnectionPool.java b/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnectionPool.java index c47da59..78fe620 100644 --- a/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnectionPool.java +++ b/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnectionPool.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.database; diff --git a/6.x/src/java/com/marcozanon/macaco/database/MDatabaseException.java b/6.x/src/java/com/marcozanon/macaco/database/MDatabaseException.java index ac13251..764622e 100644 --- a/6.x/src/java/com/marcozanon/macaco/database/MDatabaseException.java +++ b/6.x/src/java/com/marcozanon/macaco/database/MDatabaseException.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.database; diff --git a/6.x/src/java/com/marcozanon/macaco/database/MSqlStatementException.java b/6.x/src/java/com/marcozanon/macaco/database/MSqlStatementException.java index da8697b..a6d5001 100644 --- a/6.x/src/java/com/marcozanon/macaco/database/MSqlStatementException.java +++ b/6.x/src/java/com/marcozanon/macaco/database/MSqlStatementException.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.database; diff --git a/6.x/src/java/com/marcozanon/macaco/database/MSqlStatementResults.java b/6.x/src/java/com/marcozanon/macaco/database/MSqlStatementResults.java index 4ff7e8f..0fa300d 100644 --- a/6.x/src/java/com/marcozanon/macaco/database/MSqlStatementResults.java +++ b/6.x/src/java/com/marcozanon/macaco/database/MSqlStatementResults.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.database; diff --git a/6.x/src/java/com/marcozanon/macaco/database/MSqlTable.java b/6.x/src/java/com/marcozanon/macaco/database/MSqlTable.java index 2667dfb..dc99401 100644 --- a/6.x/src/java/com/marcozanon/macaco/database/MSqlTable.java +++ b/6.x/src/java/com/marcozanon/macaco/database/MSqlTable.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.database; diff --git a/6.x/src/java/com/marcozanon/macaco/database/MSqlTransactionException.java b/6.x/src/java/com/marcozanon/macaco/database/MSqlTransactionException.java index 2a3b883..40d5003 100644 --- a/6.x/src/java/com/marcozanon/macaco/database/MSqlTransactionException.java +++ b/6.x/src/java/com/marcozanon/macaco/database/MSqlTransactionException.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.database; diff --git a/6.x/src/java/com/marcozanon/macaco/json/MInvalidJsonValueException.java b/6.x/src/java/com/marcozanon/macaco/json/MInvalidJsonValueException.java index f6a7dd0..f471bbc 100644 --- a/6.x/src/java/com/marcozanon/macaco/json/MInvalidJsonValueException.java +++ b/6.x/src/java/com/marcozanon/macaco/json/MInvalidJsonValueException.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.json; diff --git a/6.x/src/java/com/marcozanon/macaco/json/MJsonArray.java b/6.x/src/java/com/marcozanon/macaco/json/MJsonArray.java index 53d5024..8b82408 100644 --- a/6.x/src/java/com/marcozanon/macaco/json/MJsonArray.java +++ b/6.x/src/java/com/marcozanon/macaco/json/MJsonArray.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.json; diff --git a/6.x/src/java/com/marcozanon/macaco/json/MJsonBoolean.java b/6.x/src/java/com/marcozanon/macaco/json/MJsonBoolean.java index 8ff84a5..fa54fdd 100644 --- a/6.x/src/java/com/marcozanon/macaco/json/MJsonBoolean.java +++ b/6.x/src/java/com/marcozanon/macaco/json/MJsonBoolean.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.json; diff --git a/6.x/src/java/com/marcozanon/macaco/json/MJsonException.java b/6.x/src/java/com/marcozanon/macaco/json/MJsonException.java index 3006efd..eecff5f 100644 --- a/6.x/src/java/com/marcozanon/macaco/json/MJsonException.java +++ b/6.x/src/java/com/marcozanon/macaco/json/MJsonException.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.json; diff --git a/6.x/src/java/com/marcozanon/macaco/json/MJsonNull.java b/6.x/src/java/com/marcozanon/macaco/json/MJsonNull.java index ceb9bc2..6a327aa 100644 --- a/6.x/src/java/com/marcozanon/macaco/json/MJsonNull.java +++ b/6.x/src/java/com/marcozanon/macaco/json/MJsonNull.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.json; diff --git a/6.x/src/java/com/marcozanon/macaco/json/MJsonNumber.java b/6.x/src/java/com/marcozanon/macaco/json/MJsonNumber.java index 4aaa6cf..e71555f 100644 --- a/6.x/src/java/com/marcozanon/macaco/json/MJsonNumber.java +++ b/6.x/src/java/com/marcozanon/macaco/json/MJsonNumber.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.json; diff --git a/6.x/src/java/com/marcozanon/macaco/json/MJsonObject.java b/6.x/src/java/com/marcozanon/macaco/json/MJsonObject.java index 73ecce7..56f01b5 100644 --- a/6.x/src/java/com/marcozanon/macaco/json/MJsonObject.java +++ b/6.x/src/java/com/marcozanon/macaco/json/MJsonObject.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.json; diff --git a/6.x/src/java/com/marcozanon/macaco/json/MJsonString.java b/6.x/src/java/com/marcozanon/macaco/json/MJsonString.java index 2113449..4e2dc16 100644 --- a/6.x/src/java/com/marcozanon/macaco/json/MJsonString.java +++ b/6.x/src/java/com/marcozanon/macaco/json/MJsonString.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.json; diff --git a/6.x/src/java/com/marcozanon/macaco/json/MJsonValue.java b/6.x/src/java/com/marcozanon/macaco/json/MJsonValue.java index 603eb78..4a49192 100644 --- a/6.x/src/java/com/marcozanon/macaco/json/MJsonValue.java +++ b/6.x/src/java/com/marcozanon/macaco/json/MJsonValue.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.json; diff --git a/6.x/src/java/com/marcozanon/macaco/logging/MLogDatabaseTable.java b/6.x/src/java/com/marcozanon/macaco/logging/MLogDatabaseTable.java index 0309b94..af38429 100644 --- a/6.x/src/java/com/marcozanon/macaco/logging/MLogDatabaseTable.java +++ b/6.x/src/java/com/marcozanon/macaco/logging/MLogDatabaseTable.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.logging; diff --git a/6.x/src/java/com/marcozanon/macaco/logging/MLogFilter.java b/6.x/src/java/com/marcozanon/macaco/logging/MLogFilter.java index de2e602..bec0a0a 100644 --- a/6.x/src/java/com/marcozanon/macaco/logging/MLogFilter.java +++ b/6.x/src/java/com/marcozanon/macaco/logging/MLogFilter.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.logging; diff --git a/6.x/src/java/com/marcozanon/macaco/logging/MLogListener.java b/6.x/src/java/com/marcozanon/macaco/logging/MLogListener.java index bb03c15..ce730fe 100644 --- a/6.x/src/java/com/marcozanon/macaco/logging/MLogListener.java +++ b/6.x/src/java/com/marcozanon/macaco/logging/MLogListener.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.logging; diff --git a/6.x/src/java/com/marcozanon/macaco/logging/MLogMessage.java b/6.x/src/java/com/marcozanon/macaco/logging/MLogMessage.java index 929bd7d..d96fb86 100644 --- a/6.x/src/java/com/marcozanon/macaco/logging/MLogMessage.java +++ b/6.x/src/java/com/marcozanon/macaco/logging/MLogMessage.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.logging; diff --git a/6.x/src/java/com/marcozanon/macaco/logging/MLogPlainTextFile.java b/6.x/src/java/com/marcozanon/macaco/logging/MLogPlainTextFile.java index 8b671c5..5f286d5 100644 --- a/6.x/src/java/com/marcozanon/macaco/logging/MLogPlainTextFile.java +++ b/6.x/src/java/com/marcozanon/macaco/logging/MLogPlainTextFile.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.logging; diff --git a/6.x/src/java/com/marcozanon/macaco/logging/MLogTarget.java b/6.x/src/java/com/marcozanon/macaco/logging/MLogTarget.java index 077c0ff..3bd51b8 100644 --- a/6.x/src/java/com/marcozanon/macaco/logging/MLogTarget.java +++ b/6.x/src/java/com/marcozanon/macaco/logging/MLogTarget.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.logging; diff --git a/6.x/src/java/com/marcozanon/macaco/logging/MLoggingException.java b/6.x/src/java/com/marcozanon/macaco/logging/MLoggingException.java index 129511e..c6756c4 100644 --- a/6.x/src/java/com/marcozanon/macaco/logging/MLoggingException.java +++ b/6.x/src/java/com/marcozanon/macaco/logging/MLoggingException.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.logging; diff --git a/6.x/src/java/com/marcozanon/macaco/text/MText.java b/6.x/src/java/com/marcozanon/macaco/text/MText.java index e300e89..b3b24d4 100644 --- a/6.x/src/java/com/marcozanon/macaco/text/MText.java +++ b/6.x/src/java/com/marcozanon/macaco/text/MText.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.text; diff --git a/6.x/src/java/com/marcozanon/macaco/text/MTextException.java b/6.x/src/java/com/marcozanon/macaco/text/MTextException.java index fd52ce1..70ff746 100644 --- a/6.x/src/java/com/marcozanon/macaco/text/MTextException.java +++ b/6.x/src/java/com/marcozanon/macaco/text/MTextException.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.text; diff --git a/6.x/src/java/com/marcozanon/macaco/text/MTranslationException.java b/6.x/src/java/com/marcozanon/macaco/text/MTranslationException.java index f507402..270ca57 100644 --- a/6.x/src/java/com/marcozanon/macaco/text/MTranslationException.java +++ b/6.x/src/java/com/marcozanon/macaco/text/MTranslationException.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.text; diff --git a/6.x/src/java/com/marcozanon/macaco/text/MTranslationFileParsingException.java b/6.x/src/java/com/marcozanon/macaco/text/MTranslationFileParsingException.java index f071e2c..f7d7ab3 100644 --- a/6.x/src/java/com/marcozanon/macaco/text/MTranslationFileParsingException.java +++ b/6.x/src/java/com/marcozanon/macaco/text/MTranslationFileParsingException.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.text; diff --git a/6.x/src/java/com/marcozanon/macaco/text/MTranslationValueNotFoundException.java b/6.x/src/java/com/marcozanon/macaco/text/MTranslationValueNotFoundException.java index 75b9b04..3b5eb63 100644 --- a/6.x/src/java/com/marcozanon/macaco/text/MTranslationValueNotFoundException.java +++ b/6.x/src/java/com/marcozanon/macaco/text/MTranslationValueNotFoundException.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.text; diff --git a/6.x/src/java/com/marcozanon/macaco/text/MTranslator.java b/6.x/src/java/com/marcozanon/macaco/text/MTranslator.java index 72fc9cc..d93dc2b 100644 --- a/6.x/src/java/com/marcozanon/macaco/text/MTranslator.java +++ b/6.x/src/java/com/marcozanon/macaco/text/MTranslator.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.text; diff --git a/6.x/src/java/com/marcozanon/macaco/text/MXhtmlUnsafeStringException.java b/6.x/src/java/com/marcozanon/macaco/text/MXhtmlUnsafeStringException.java index 6a0d8f0..28de5eb 100644 --- a/6.x/src/java/com/marcozanon/macaco/text/MXhtmlUnsafeStringException.java +++ b/6.x/src/java/com/marcozanon/macaco/text/MXhtmlUnsafeStringException.java @@ -1,7 +1,7 @@ /** * Macaco - * Copyright (c) 2009-2017 Marco Zanon . - * Released under MIT license (see LICENSE for details). + * Copyright (c) 2009-2018 Marco Zanon . + * See LICENSE for details. */ package com.marcozanon.macaco.text;