From 024d8ec2fa43cac6fba3fa3e2509422c6db578ef Mon Sep 17 00:00:00 2001 From: Daniel Kavan Date: Wed, 8 Dec 2021 11:47:53 +0100 Subject: [PATCH] #1 added header checking for src/test/scala, too. + header NL fixes, build name = small caps, --- .editorconfig | 15 +++++++++++++++ .github/workflows/build.yml | 1 + .github/workflows/licence_check.yml | 8 +++++++- .gitignore | 1 + build.sbt | 8 ++++++-- src/main/resources/reference.conf | 1 + src/test/resources/application.conf | 1 + .../ArrayTransformationsSuite.scala | 1 + .../standardization/ErrorMessageFactory.scala | 1 + .../co/absa/standardization/JsonUtilsSuite.scala | 1 + .../co/absa/standardization/LoggerTestBase.scala | 1 + .../standardization/RecordIdGenerationSuite.scala | 1 + .../standardization/SchemaValidationSuite.scala | 1 + .../co/absa/standardization/SparkTestBase.scala | 1 + .../StandardizationParquetSuite.scala | 1 + .../StandardizationRerunSuite.scala | 2 +- .../za/co/absa/standardization/TestSamples.scala | 2 +- .../implicits/DataFrameImplicitsSuite.scala | 1 + .../implicits/StringImplicitsSuite.scala | 1 + .../interpreter/CounterPartySuite.scala | 1 + .../interpreter/DateTimeSuite.scala | 1 + .../interpreter/SampleDataSuite.scala | 1 + .../StandardizationInterpreterSuite.scala | 1 + .../StandardizationInterpreter_ArraySuite.scala | 1 + .../StandardizationInterpreter_BinarySuite.scala | 1 + .../StandardizationInterpreter_DateSuite.scala | 1 + .../StandardizationInterpreter_DecimalSuite.scala | 1 + ...andardizationInterpreter_FractionalSuite.scala | 1 + ...StandardizationInterpreter_IntegralSuite.scala | 1 + ...tandardizationInterpreter_TimestampSuite.scala | 1 + .../interpreter/StdInterpreterSuite.scala | 1 + .../stages/PlainSchemaGeneratorSuite.scala | 1 + .../interpreter/stages/SchemaCheckerSuite.scala | 1 + .../interpreter/stages/TypeParserSuite.scala | 1 + .../stages/TypeParserSuiteTemplate.scala | 1 + .../stages/TypeParser_FromBooleanTypeSuite.scala | 1 + .../stages/TypeParser_FromDateTypeSuite.scala | 1 + .../stages/TypeParser_FromDecimalTypeSuite.scala | 1 + .../stages/TypeParser_FromDoubleTypeSuite.scala | 1 + .../stages/TypeParser_FromLongTypeSuite.scala | 1 + .../stages/TypeParser_FromStringTypeSuite.scala | 1 + .../TypeParser_FromTimestampTypeSuite.scala | 1 + .../standardizationInterpreter_RowTypes.scala | 1 + .../standardization/schema/SchemaUtilsSuite.scala | 1 + .../standardization/schema/SparkUtilsSuite.scala | 1 + .../time/DateTimePatternSuite.scala | 1 + .../types/DefaultsByFormatSuite.scala | 1 + .../standardization/types/DefaultsSuite.scala | 1 + .../absa/standardization/types/SectionSuite.scala | 3 ++- .../types/TypedStructFieldSuite.scala | 1 + .../types/parsers/DateTimeParserSuite.scala | 1 + .../types/parsers/DecimalParserSuite.scala | 1 + .../types/parsers/FractionalParserSuite.scala | 1 + ...ntegralParser_PatternIntegralParserSuite.scala | 1 + .../IntegralParser_RadixIntegralParserSuite.scala | 1 + .../standardization/udf/UDFBuilderSuite.scala | 1 + .../validation/field/BinaryValidatorSuite.scala | 1 + .../field/DateFieldValidatorSuite.scala | 1 + .../validation/field/FieldValidatorSuite.scala | 1 + .../field/FractionalFieldValidatorSuite.scala | 1 + .../field/IntegralFieldValidatorSuite.scala | 1 + .../field/NumericFieldValidatorSuite.scala | 1 + .../field/ScalarFieldValidatorSuite.scala | 1 + .../field/TimestampFieldValidatorSuite.scala | 1 + 64 files changed, 90 insertions(+), 6 deletions(-) diff --git a/.editorconfig b/.editorconfig index 56fa18a..eb319bc 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,3 +1,18 @@ +# +# Copyright 2021 ABSA Group Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# # top-most EditorConfig file root = true diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7c4a28c..00dca55 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,6 +4,7 @@ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at +# # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software diff --git a/.github/workflows/licence_check.yml b/.github/workflows/licence_check.yml index b6196ca..6d96c06 100644 --- a/.github/workflows/licence_check.yml +++ b/.github/workflows/licence_check.yml @@ -4,6 +4,7 @@ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at +# # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software @@ -32,4 +33,9 @@ jobs: uses: olafurpg/setup-scala@v10 with: java-version: "adopt@1.8" - - run: sbt headerCheck + # note, that task "headerCheck" defaults to just "compile:headerCheck" - see https://github.com/sbt/sbt-header/issues/14 + - name: SBT src licence header check + run: sbt Compile/headerCheck + - name: SBT test licence header check + run: sbt Test/headerCheck + diff --git a/.gitignore b/.gitignore index 545f3fc..56b7b5e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at +# # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software diff --git a/build.sbt b/build.sbt index fad6045..57a8427 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,8 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * http://www.apache.org/licenses/LICENSE-2.0 + * + * http://www.apache.org/licenses/LICENSE-2.00 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -14,7 +15,7 @@ */ -ThisBuild / name := "Standardization" +ThisBuild / name := "standardization" ThisBuild / organization := "za.co.absa" ThisBuild / version := "0.0.1-SNAPSHOT" ThisBuild / scalaVersion := "2.11.12" @@ -57,3 +58,6 @@ assembly / assemblyMergeStrategy := { ThisBuild / organizationName := "ABSA Group Limited" ThisBuild / startYear := Some(2021) ThisBuild / licenses += "Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.txt") + +// linting +Global / excludeLintKeys += ThisBuild / name // will be used in publish, todo #3 - confirm if lint ignore is still needed diff --git a/src/main/resources/reference.conf b/src/main/resources/reference.conf index 9b7adbd..6ab630d 100644 --- a/src/main/resources/reference.conf +++ b/src/main/resources/reference.conf @@ -3,6 +3,7 @@ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at +# # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software diff --git a/src/test/resources/application.conf b/src/test/resources/application.conf index c2603e7..732c650 100644 --- a/src/test/resources/application.conf +++ b/src/test/resources/application.conf @@ -3,6 +3,7 @@ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at +# # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/ArrayTransformationsSuite.scala b/src/test/scala/za/co/absa/standardization/ArrayTransformationsSuite.scala index 12bc207..6b8a65e 100644 --- a/src/test/scala/za/co/absa/standardization/ArrayTransformationsSuite.scala +++ b/src/test/scala/za/co/absa/standardization/ArrayTransformationsSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/ErrorMessageFactory.scala b/src/test/scala/za/co/absa/standardization/ErrorMessageFactory.scala index 051ae6e..05a567b 100644 --- a/src/test/scala/za/co/absa/standardization/ErrorMessageFactory.scala +++ b/src/test/scala/za/co/absa/standardization/ErrorMessageFactory.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/JsonUtilsSuite.scala b/src/test/scala/za/co/absa/standardization/JsonUtilsSuite.scala index cb9fcd7..fcc8740 100644 --- a/src/test/scala/za/co/absa/standardization/JsonUtilsSuite.scala +++ b/src/test/scala/za/co/absa/standardization/JsonUtilsSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/LoggerTestBase.scala b/src/test/scala/za/co/absa/standardization/LoggerTestBase.scala index 3b41f76..2a0f590 100644 --- a/src/test/scala/za/co/absa/standardization/LoggerTestBase.scala +++ b/src/test/scala/za/co/absa/standardization/LoggerTestBase.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/RecordIdGenerationSuite.scala b/src/test/scala/za/co/absa/standardization/RecordIdGenerationSuite.scala index de9d1ed..8d3435b 100644 --- a/src/test/scala/za/co/absa/standardization/RecordIdGenerationSuite.scala +++ b/src/test/scala/za/co/absa/standardization/RecordIdGenerationSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/SchemaValidationSuite.scala b/src/test/scala/za/co/absa/standardization/SchemaValidationSuite.scala index 8927407..ea7fe5b 100644 --- a/src/test/scala/za/co/absa/standardization/SchemaValidationSuite.scala +++ b/src/test/scala/za/co/absa/standardization/SchemaValidationSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/SparkTestBase.scala b/src/test/scala/za/co/absa/standardization/SparkTestBase.scala index 610811e..782049d 100644 --- a/src/test/scala/za/co/absa/standardization/SparkTestBase.scala +++ b/src/test/scala/za/co/absa/standardization/SparkTestBase.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/StandardizationParquetSuite.scala b/src/test/scala/za/co/absa/standardization/StandardizationParquetSuite.scala index 83dae9b..bda61aa 100644 --- a/src/test/scala/za/co/absa/standardization/StandardizationParquetSuite.scala +++ b/src/test/scala/za/co/absa/standardization/StandardizationParquetSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/StandardizationRerunSuite.scala b/src/test/scala/za/co/absa/standardization/StandardizationRerunSuite.scala index 82a3e86..2e0e9cb 100644 --- a/src/test/scala/za/co/absa/standardization/StandardizationRerunSuite.scala +++ b/src/test/scala/za/co/absa/standardization/StandardizationRerunSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software @@ -13,7 +14,6 @@ * limitations under the License. */ - package za.co.absa.standardization import org.apache.spark.sql.functions._ diff --git a/src/test/scala/za/co/absa/standardization/TestSamples.scala b/src/test/scala/za/co/absa/standardization/TestSamples.scala index ad6f240..0fa8068 100644 --- a/src/test/scala/za/co/absa/standardization/TestSamples.scala +++ b/src/test/scala/za/co/absa/standardization/TestSamples.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software @@ -13,7 +14,6 @@ * limitations under the License. */ - package za.co.absa.standardization import java.sql.Timestamp diff --git a/src/test/scala/za/co/absa/standardization/implicits/DataFrameImplicitsSuite.scala b/src/test/scala/za/co/absa/standardization/implicits/DataFrameImplicitsSuite.scala index 36867de..735f388 100644 --- a/src/test/scala/za/co/absa/standardization/implicits/DataFrameImplicitsSuite.scala +++ b/src/test/scala/za/co/absa/standardization/implicits/DataFrameImplicitsSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/implicits/StringImplicitsSuite.scala b/src/test/scala/za/co/absa/standardization/implicits/StringImplicitsSuite.scala index 01fa51f..efe7e44 100644 --- a/src/test/scala/za/co/absa/standardization/implicits/StringImplicitsSuite.scala +++ b/src/test/scala/za/co/absa/standardization/implicits/StringImplicitsSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/CounterPartySuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/CounterPartySuite.scala index a8328d3..4a1029c 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/CounterPartySuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/CounterPartySuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/DateTimeSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/DateTimeSuite.scala index 4d9941f..b6d2490 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/DateTimeSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/DateTimeSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/SampleDataSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/SampleDataSuite.scala index 3513e3c..334edb0 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/SampleDataSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/SampleDataSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreterSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreterSuite.scala index de48ab4..d86e2f0 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreterSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreterSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_ArraySuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_ArraySuite.scala index efd30ec..a7b500d 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_ArraySuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_ArraySuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_BinarySuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_BinarySuite.scala index 667e894..963ea59 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_BinarySuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_BinarySuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_DateSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_DateSuite.scala index b9bce20..d0dcafa 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_DateSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_DateSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_DecimalSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_DecimalSuite.scala index 71e5f27..ac7a3ba 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_DecimalSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_DecimalSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_FractionalSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_FractionalSuite.scala index 5557c0a..fe124b3 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_FractionalSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_FractionalSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_IntegralSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_IntegralSuite.scala index 4f9286f..0de1006 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_IntegralSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_IntegralSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_TimestampSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_TimestampSuite.scala index cbd8150..d662f5f 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_TimestampSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/StandardizationInterpreter_TimestampSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/StdInterpreterSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/StdInterpreterSuite.scala index 0d13fe4..a969e41 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/StdInterpreterSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/StdInterpreterSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/stages/PlainSchemaGeneratorSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/stages/PlainSchemaGeneratorSuite.scala index f0246bd..037a7a4 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/stages/PlainSchemaGeneratorSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/stages/PlainSchemaGeneratorSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/stages/SchemaCheckerSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/stages/SchemaCheckerSuite.scala index bff0996..4655df8 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/stages/SchemaCheckerSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/stages/SchemaCheckerSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParserSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParserSuite.scala index 852324b..bbd5662 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParserSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParserSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParserSuiteTemplate.scala b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParserSuiteTemplate.scala index aac54bd..dc62e7a 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParserSuiteTemplate.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParserSuiteTemplate.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromBooleanTypeSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromBooleanTypeSuite.scala index 93525e7..c604edf 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromBooleanTypeSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromBooleanTypeSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromDateTypeSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromDateTypeSuite.scala index 190f4cc..dd1851c 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromDateTypeSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromDateTypeSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromDecimalTypeSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromDecimalTypeSuite.scala index 9182444..9b40d51 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromDecimalTypeSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromDecimalTypeSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromDoubleTypeSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromDoubleTypeSuite.scala index 2ee5a03..d549fb7 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromDoubleTypeSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromDoubleTypeSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromLongTypeSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromLongTypeSuite.scala index 200750e..a7ff0b5 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromLongTypeSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromLongTypeSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromStringTypeSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromStringTypeSuite.scala index d81a158..9e9dd7f 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromStringTypeSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromStringTypeSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromTimestampTypeSuite.scala b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromTimestampTypeSuite.scala index 68e0247..aa57b05 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromTimestampTypeSuite.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/stages/TypeParser_FromTimestampTypeSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/interpreter/standardizationInterpreter_RowTypes.scala b/src/test/scala/za/co/absa/standardization/interpreter/standardizationInterpreter_RowTypes.scala index e451559..8eca9f2 100644 --- a/src/test/scala/za/co/absa/standardization/interpreter/standardizationInterpreter_RowTypes.scala +++ b/src/test/scala/za/co/absa/standardization/interpreter/standardizationInterpreter_RowTypes.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/schema/SchemaUtilsSuite.scala b/src/test/scala/za/co/absa/standardization/schema/SchemaUtilsSuite.scala index 363a44b..a5f1276 100644 --- a/src/test/scala/za/co/absa/standardization/schema/SchemaUtilsSuite.scala +++ b/src/test/scala/za/co/absa/standardization/schema/SchemaUtilsSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/schema/SparkUtilsSuite.scala b/src/test/scala/za/co/absa/standardization/schema/SparkUtilsSuite.scala index 403c629..a5662c0 100644 --- a/src/test/scala/za/co/absa/standardization/schema/SparkUtilsSuite.scala +++ b/src/test/scala/za/co/absa/standardization/schema/SparkUtilsSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/time/DateTimePatternSuite.scala b/src/test/scala/za/co/absa/standardization/time/DateTimePatternSuite.scala index 8bb49f7..6945d8b 100644 --- a/src/test/scala/za/co/absa/standardization/time/DateTimePatternSuite.scala +++ b/src/test/scala/za/co/absa/standardization/time/DateTimePatternSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/types/DefaultsByFormatSuite.scala b/src/test/scala/za/co/absa/standardization/types/DefaultsByFormatSuite.scala index 0dc7cd9..8e5c8fe 100644 --- a/src/test/scala/za/co/absa/standardization/types/DefaultsByFormatSuite.scala +++ b/src/test/scala/za/co/absa/standardization/types/DefaultsByFormatSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/types/DefaultsSuite.scala b/src/test/scala/za/co/absa/standardization/types/DefaultsSuite.scala index 729ac26..87dace2 100644 --- a/src/test/scala/za/co/absa/standardization/types/DefaultsSuite.scala +++ b/src/test/scala/za/co/absa/standardization/types/DefaultsSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/types/SectionSuite.scala b/src/test/scala/za/co/absa/standardization/types/SectionSuite.scala index dd66032..5c12b6e 100644 --- a/src/test/scala/za/co/absa/standardization/types/SectionSuite.scala +++ b/src/test/scala/za/co/absa/standardization/types/SectionSuite.scala @@ -1,9 +1,10 @@ /* - * Copyright 2018 ABSA Group Limited + * Copyright 2021 ABSA Group Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/types/TypedStructFieldSuite.scala b/src/test/scala/za/co/absa/standardization/types/TypedStructFieldSuite.scala index e6b8dfd..349e66d 100644 --- a/src/test/scala/za/co/absa/standardization/types/TypedStructFieldSuite.scala +++ b/src/test/scala/za/co/absa/standardization/types/TypedStructFieldSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/types/parsers/DateTimeParserSuite.scala b/src/test/scala/za/co/absa/standardization/types/parsers/DateTimeParserSuite.scala index 7592f84..3d7771f 100644 --- a/src/test/scala/za/co/absa/standardization/types/parsers/DateTimeParserSuite.scala +++ b/src/test/scala/za/co/absa/standardization/types/parsers/DateTimeParserSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/types/parsers/DecimalParserSuite.scala b/src/test/scala/za/co/absa/standardization/types/parsers/DecimalParserSuite.scala index 680e945..099ef81 100644 --- a/src/test/scala/za/co/absa/standardization/types/parsers/DecimalParserSuite.scala +++ b/src/test/scala/za/co/absa/standardization/types/parsers/DecimalParserSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/types/parsers/FractionalParserSuite.scala b/src/test/scala/za/co/absa/standardization/types/parsers/FractionalParserSuite.scala index fe7e8e5..f3fdde4 100644 --- a/src/test/scala/za/co/absa/standardization/types/parsers/FractionalParserSuite.scala +++ b/src/test/scala/za/co/absa/standardization/types/parsers/FractionalParserSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/types/parsers/IntegralParser_PatternIntegralParserSuite.scala b/src/test/scala/za/co/absa/standardization/types/parsers/IntegralParser_PatternIntegralParserSuite.scala index 561256a..792aa16 100644 --- a/src/test/scala/za/co/absa/standardization/types/parsers/IntegralParser_PatternIntegralParserSuite.scala +++ b/src/test/scala/za/co/absa/standardization/types/parsers/IntegralParser_PatternIntegralParserSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/types/parsers/IntegralParser_RadixIntegralParserSuite.scala b/src/test/scala/za/co/absa/standardization/types/parsers/IntegralParser_RadixIntegralParserSuite.scala index cffc9ed..0c94bdd 100644 --- a/src/test/scala/za/co/absa/standardization/types/parsers/IntegralParser_RadixIntegralParserSuite.scala +++ b/src/test/scala/za/co/absa/standardization/types/parsers/IntegralParser_RadixIntegralParserSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/udf/UDFBuilderSuite.scala b/src/test/scala/za/co/absa/standardization/udf/UDFBuilderSuite.scala index c92be4f..9d13767 100644 --- a/src/test/scala/za/co/absa/standardization/udf/UDFBuilderSuite.scala +++ b/src/test/scala/za/co/absa/standardization/udf/UDFBuilderSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/validation/field/BinaryValidatorSuite.scala b/src/test/scala/za/co/absa/standardization/validation/field/BinaryValidatorSuite.scala index 339e260..e56c65e 100644 --- a/src/test/scala/za/co/absa/standardization/validation/field/BinaryValidatorSuite.scala +++ b/src/test/scala/za/co/absa/standardization/validation/field/BinaryValidatorSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/validation/field/DateFieldValidatorSuite.scala b/src/test/scala/za/co/absa/standardization/validation/field/DateFieldValidatorSuite.scala index 8bef9bb..045d72f 100644 --- a/src/test/scala/za/co/absa/standardization/validation/field/DateFieldValidatorSuite.scala +++ b/src/test/scala/za/co/absa/standardization/validation/field/DateFieldValidatorSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/validation/field/FieldValidatorSuite.scala b/src/test/scala/za/co/absa/standardization/validation/field/FieldValidatorSuite.scala index 0fa3227..8968a3f 100644 --- a/src/test/scala/za/co/absa/standardization/validation/field/FieldValidatorSuite.scala +++ b/src/test/scala/za/co/absa/standardization/validation/field/FieldValidatorSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/validation/field/FractionalFieldValidatorSuite.scala b/src/test/scala/za/co/absa/standardization/validation/field/FractionalFieldValidatorSuite.scala index ad6c39c..b8f4c6f 100644 --- a/src/test/scala/za/co/absa/standardization/validation/field/FractionalFieldValidatorSuite.scala +++ b/src/test/scala/za/co/absa/standardization/validation/field/FractionalFieldValidatorSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/validation/field/IntegralFieldValidatorSuite.scala b/src/test/scala/za/co/absa/standardization/validation/field/IntegralFieldValidatorSuite.scala index 23b0306..9159538 100644 --- a/src/test/scala/za/co/absa/standardization/validation/field/IntegralFieldValidatorSuite.scala +++ b/src/test/scala/za/co/absa/standardization/validation/field/IntegralFieldValidatorSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/validation/field/NumericFieldValidatorSuite.scala b/src/test/scala/za/co/absa/standardization/validation/field/NumericFieldValidatorSuite.scala index 55f3d5c..0487dd0 100644 --- a/src/test/scala/za/co/absa/standardization/validation/field/NumericFieldValidatorSuite.scala +++ b/src/test/scala/za/co/absa/standardization/validation/field/NumericFieldValidatorSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/validation/field/ScalarFieldValidatorSuite.scala b/src/test/scala/za/co/absa/standardization/validation/field/ScalarFieldValidatorSuite.scala index 334e7cf..7000711 100644 --- a/src/test/scala/za/co/absa/standardization/validation/field/ScalarFieldValidatorSuite.scala +++ b/src/test/scala/za/co/absa/standardization/validation/field/ScalarFieldValidatorSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software diff --git a/src/test/scala/za/co/absa/standardization/validation/field/TimestampFieldValidatorSuite.scala b/src/test/scala/za/co/absa/standardization/validation/field/TimestampFieldValidatorSuite.scala index 8ad70d0..f08afa7 100644 --- a/src/test/scala/za/co/absa/standardization/validation/field/TimestampFieldValidatorSuite.scala +++ b/src/test/scala/za/co/absa/standardization/validation/field/TimestampFieldValidatorSuite.scala @@ -4,6 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at + * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software