diff --git a/project/plugins.sbt b/project/plugins.sbt index d3ffa5d..382de02 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -5,4 +5,4 @@ addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.10.0-RC1") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.5") addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.4") -addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.7.0") +addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.8.0") diff --git a/src/main/scala/systems/enliven/iso/CountryCallingCode.scala b/src/main/scala/systems/enliven/iso/CountryCallingCode.scala index dcebd9b..910509d 100644 --- a/src/main/scala/systems/enliven/iso/CountryCallingCode.scala +++ b/src/main/scala/systems/enliven/iso/CountryCallingCode.scala @@ -1,3 +1,27 @@ +/* + * MIT License + * + * Copyright (c) 2021 Enliven Systems Kft. + * + * 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. + */ + package systems.enliven.iso import systems.enliven.iso.ISOCountry.ISOCountry diff --git a/src/main/scala/systems/enliven/iso/CountrySubdivision.scala b/src/main/scala/systems/enliven/iso/CountrySubdivision.scala index ade9c8a..24d3e0e 100644 --- a/src/main/scala/systems/enliven/iso/CountrySubdivision.scala +++ b/src/main/scala/systems/enliven/iso/CountrySubdivision.scala @@ -1,3 +1,27 @@ +/* + * MIT License + * + * Copyright (c) 2021 Enliven Systems Kft. + * + * 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. + */ + package systems.enliven.iso import systems.enliven.iso.ISOCountry.ISOCountry diff --git a/src/main/scala/systems/enliven/iso/Enum.scala b/src/main/scala/systems/enliven/iso/Enum.scala index 1cc6877..f853c21 100644 --- a/src/main/scala/systems/enliven/iso/Enum.scala +++ b/src/main/scala/systems/enliven/iso/Enum.scala @@ -1,3 +1,27 @@ +/* + * MIT License + * + * Copyright (c) 2021 Enliven Systems Kft. + * + * 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. + */ + package systems.enliven.iso //Slightly adapted from https://gist.github.com/d6y/376f1a4b178c343ff415 diff --git a/src/main/scala/systems/enliven/iso/ISOContinent.scala b/src/main/scala/systems/enliven/iso/ISOContinent.scala index 3ff3420..d5ba050 100644 --- a/src/main/scala/systems/enliven/iso/ISOContinent.scala +++ b/src/main/scala/systems/enliven/iso/ISOContinent.scala @@ -1,3 +1,27 @@ +/* + * MIT License + * + * Copyright (c) 2021 Enliven Systems Kft. + * + * 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. + */ + package systems.enliven.iso object ISOContinent extends Enum { diff --git a/src/main/scala/systems/enliven/iso/ISOCountry.scala b/src/main/scala/systems/enliven/iso/ISOCountry.scala index b72e2de..bb2ef69 100644 --- a/src/main/scala/systems/enliven/iso/ISOCountry.scala +++ b/src/main/scala/systems/enliven/iso/ISOCountry.scala @@ -1,3 +1,27 @@ +/* + * MIT License + * + * Copyright (c) 2021 Enliven Systems Kft. + * + * 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. + */ + package systems.enliven.iso import systems.enliven.iso.ISOContinent.ISOContinent diff --git a/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionAfrica.scala b/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionAfrica.scala index 5fe8e47..987d63c 100644 --- a/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionAfrica.scala +++ b/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionAfrica.scala @@ -1,3 +1,27 @@ +/* + * MIT License + * + * Copyright (c) 2021 Enliven Systems Kft. + * + * 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. + */ + package systems.enliven.iso /** diff --git a/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionAsia.scala b/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionAsia.scala index e24fa0d..3cfdb38 100644 --- a/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionAsia.scala +++ b/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionAsia.scala @@ -1,3 +1,27 @@ +/* + * MIT License + * + * Copyright (c) 2021 Enliven Systems Kft. + * + * 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. + */ + package systems.enliven.iso /** diff --git a/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionEurope.scala b/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionEurope.scala index ca1a6ad..746fb73 100644 --- a/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionEurope.scala +++ b/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionEurope.scala @@ -1,3 +1,27 @@ +/* + * MIT License + * + * Copyright (c) 2021 Enliven Systems Kft. + * + * 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. + */ + package systems.enliven.iso /** diff --git a/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionNorthAmerica.scala b/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionNorthAmerica.scala index c0f335b..17363af 100644 --- a/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionNorthAmerica.scala +++ b/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionNorthAmerica.scala @@ -1,3 +1,27 @@ +/* + * MIT License + * + * Copyright (c) 2021 Enliven Systems Kft. + * + * 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. + */ + package systems.enliven.iso /** diff --git a/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionOceania.scala b/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionOceania.scala index 5e732d0..149e1b1 100644 --- a/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionOceania.scala +++ b/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionOceania.scala @@ -1,3 +1,27 @@ +/* + * MIT License + * + * Copyright (c) 2021 Enliven Systems Kft. + * + * 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. + */ + package systems.enliven.iso /** diff --git a/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionSouthAmerica.scala b/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionSouthAmerica.scala index 7716fa2..1d96918 100644 --- a/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionSouthAmerica.scala +++ b/src/main/scala/systems/enliven/iso/ISOCountrySubdivisionSouthAmerica.scala @@ -1,3 +1,27 @@ +/* + * MIT License + * + * Copyright (c) 2021 Enliven Systems Kft. + * + * 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. + */ + package systems.enliven.iso /** diff --git a/src/main/scala/systems/enliven/iso/ISOCurrency.scala b/src/main/scala/systems/enliven/iso/ISOCurrency.scala index 2361caa..4dcff24 100644 --- a/src/main/scala/systems/enliven/iso/ISOCurrency.scala +++ b/src/main/scala/systems/enliven/iso/ISOCurrency.scala @@ -1,3 +1,27 @@ +/* + * MIT License + * + * Copyright (c) 2021 Enliven Systems Kft. + * + * 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. + */ + package systems.enliven.iso import systems.enliven.iso.ISOCountry.ISOCountry