diff --git a/AUTHORS.md b/AUTHORS.md new file mode 100644 index 0000000..e4118ad --- /dev/null +++ b/AUTHORS.md @@ -0,0 +1,17 @@ +[comment]: <> (Don't edit this file!) +[comment]: <> (It is automatically updated after every release of https://github.com/47degrees/.github) +[comment]: <> (If you want to suggest a change, please open a PR or issue in that repository) + +# Authors + +## Maintainers + +The maintainers of the project are: + +- [![juanpedromoreno](https://avatars2.githubusercontent.com/u/4879373?v=4&s=20) **Juan Pedro Moreno (juanpedromoreno)**](https://github.com/juanpedromoreno) + +## Contributors + +These are the people that have contributed to the _sbt-exercise_ project: + +- [![juanpedromoreno](https://avatars2.githubusercontent.com/u/4879373?v=4&s=20) **juanpedromoreno**](https://github.com/juanpedromoreno) \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f96faef..d794bca 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,18 +4,18 @@ # Contributing -Discussion around _scala-exercises_ happens in the [GitHub issues](https://github.com/scala-exercises/scala-exercises/issues) and [pull requests](https://github.com/scala-exercises/scala-exercises/pulls). +Discussion around _sbt-exercise_ happens in the [GitHub issues](https://github.com/scala-exercises/sbt-exercise/issues) and [pull requests](https://github.com/scala-exercises/sbt-exercise/pulls). Feel free to open an issue if you notice a bug, have an idea for a feature, or have a question about the code. Pull requests are also welcome. -People are expected to follow the [Code of Conduct](CODE_OF_CONDUCT.md) when discussing _scala-exercises_ on the Github page or other venues. +People are expected to follow the [Code of Conduct](CODE_OF_CONDUCT.md) when discussing _sbt-exercise_ on the Github page or other venues. -If you are being harassed, please contact one of [us](AUTHORS.md#maintainers) immediately so that we can support you. In case you cannot get in touch with us please write an email to [47 Degrees](mailto:scala-exercises@47deg.com). +If you are being harassed, please contact one of [us](AUTHORS.md#maintainers) immediately so that we can support you. In case you cannot get in touch with us please write an email to [47 Degrees Open Source](mailto:hello@47deg.com). ## How can I help? -_scala-exercises_ follows a standard [fork and pull](https://help.github.com/articles/using-pull-requests/) model for contributions via GitHub pull requests. +_sbt-exercise_ follows a standard [fork and pull](https://help.github.com/articles/using-pull-requests/) model for contributions via GitHub pull requests. The process is simple: diff --git a/LICENSE.md b/LICENSE.md index 1c0c39c..1af5ddb 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright (C) 2014-2020 47 Degrees + Copyright (C) 2020 47 Degrees Open Source Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NOTICE.md b/NOTICE.md index d0d01a9..08bfc0f 100644 --- a/NOTICE.md +++ b/NOTICE.md @@ -2,8 +2,8 @@ [comment]: <> (It is automatically updated after every release of https://github.com/47degrees/.github) [comment]: <> (If you want to suggest a change, please open a PR or issue in that repository) -scala-exercises +sbt-exercise -Copyright (c) 2014-2020 47 Degrees. All rights reserved. +Copyright (c) 2020 47 Degrees Open Source. All rights reserved. Licensed under Apache-2.0. See [LICENSE](LICENSE.md) for terms. \ No newline at end of file diff --git a/compiler/src/main/scala/org/scalaexercises/exercises/compiler/Compiler.scala b/compiler/src/main/scala/org/scalaexercises/exercises/compiler/Compiler.scala index 4a01ffa..bc42141 100644 --- a/compiler/src/main/scala/org/scalaexercises/exercises/compiler/Compiler.scala +++ b/compiler/src/main/scala/org/scalaexercises/exercises/compiler/Compiler.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/compiler/src/main/scala/org/scalaexercises/exercises/compiler/MethodBodyReader.scala b/compiler/src/main/scala/org/scalaexercises/exercises/compiler/MethodBodyReader.scala index 22f8bf4..e605862 100644 --- a/compiler/src/main/scala/org/scalaexercises/exercises/compiler/MethodBodyReader.scala +++ b/compiler/src/main/scala/org/scalaexercises/exercises/compiler/MethodBodyReader.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/compiler/src/main/scala/org/scalaexercises/exercises/compiler/SourceTextExtraction.scala b/compiler/src/main/scala/org/scalaexercises/exercises/compiler/SourceTextExtraction.scala index e239ef6..0a8c615 100644 --- a/compiler/src/main/scala/org/scalaexercises/exercises/compiler/SourceTextExtraction.scala +++ b/compiler/src/main/scala/org/scalaexercises/exercises/compiler/SourceTextExtraction.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/compiler/src/main/scala/org/scalaexercises/exercises/compiler/TreeGen.scala b/compiler/src/main/scala/org/scalaexercises/exercises/compiler/TreeGen.scala index 819047a..d610165 100644 --- a/compiler/src/main/scala/org/scalaexercises/exercises/compiler/TreeGen.scala +++ b/compiler/src/main/scala/org/scalaexercises/exercises/compiler/TreeGen.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/compiler/src/main/scala/org/scalaexercises/exercises/compiler/comments.scala b/compiler/src/main/scala/org/scalaexercises/exercises/compiler/comments.scala index 066e65d..ec84100 100644 --- a/compiler/src/main/scala/org/scalaexercises/exercises/compiler/comments.scala +++ b/compiler/src/main/scala/org/scalaexercises/exercises/compiler/comments.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/compiler/src/main/scala/org/scalaexercises/exercises/compiler/formatting.scala b/compiler/src/main/scala/org/scalaexercises/exercises/compiler/formatting.scala index 004bd54..e624fbb 100644 --- a/compiler/src/main/scala/org/scalaexercises/exercises/compiler/formatting.scala +++ b/compiler/src/main/scala/org/scalaexercises/exercises/compiler/formatting.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/compiler/src/test/scala/org/scalaexercises/exercises/compiler/CommentParsingRenderingSpec.scala b/compiler/src/test/scala/org/scalaexercises/exercises/compiler/CommentParsingRenderingSpec.scala index 89e8682..4fbb2c6 100644 --- a/compiler/src/test/scala/org/scalaexercises/exercises/compiler/CommentParsingRenderingSpec.scala +++ b/compiler/src/test/scala/org/scalaexercises/exercises/compiler/CommentParsingRenderingSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/compiler/src/test/scala/org/scalaexercises/exercises/compiler/CommentRenderingRegressions.scala b/compiler/src/test/scala/org/scalaexercises/exercises/compiler/CommentRenderingRegressions.scala index a9a4060..9cbb5ed 100644 --- a/compiler/src/test/scala/org/scalaexercises/exercises/compiler/CommentRenderingRegressions.scala +++ b/compiler/src/test/scala/org/scalaexercises/exercises/compiler/CommentRenderingRegressions.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/compiler/src/test/scala/org/scalaexercises/exercises/compiler/CompilerSpec.scala b/compiler/src/test/scala/org/scalaexercises/exercises/compiler/CompilerSpec.scala index 91e7990..7ee4b12 100644 --- a/compiler/src/test/scala/org/scalaexercises/exercises/compiler/CompilerSpec.scala +++ b/compiler/src/test/scala/org/scalaexercises/exercises/compiler/CompilerSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/compiler/src/test/scala/org/scalaexercises/exercises/compiler/MethodBodyReaderSpec.scala b/compiler/src/test/scala/org/scalaexercises/exercises/compiler/MethodBodyReaderSpec.scala index ad68fa3..ff73f1d 100644 --- a/compiler/src/test/scala/org/scalaexercises/exercises/compiler/MethodBodyReaderSpec.scala +++ b/compiler/src/test/scala/org/scalaexercises/exercises/compiler/MethodBodyReaderSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/compiler/src/test/scala/org/scalaexercises/exercises/compiler/SourceTextExtractionSpec.scala b/compiler/src/test/scala/org/scalaexercises/exercises/compiler/SourceTextExtractionSpec.scala index 6e56e15..e2fd509 100644 --- a/compiler/src/test/scala/org/scalaexercises/exercises/compiler/SourceTextExtractionSpec.scala +++ b/compiler/src/test/scala/org/scalaexercises/exercises/compiler/SourceTextExtractionSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/compiler/src/test/scala/org/scalaexercises/exercises/compiler/TreeGenSpec.scala b/compiler/src/test/scala/org/scalaexercises/exercises/compiler/TreeGenSpec.scala index e7faf53..3f975dc 100644 --- a/compiler/src/test/scala/org/scalaexercises/exercises/compiler/TreeGenSpec.scala +++ b/compiler/src/test/scala/org/scalaexercises/exercises/compiler/TreeGenSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/definitions/src/main/scala/exercise/BuildInfo.scala b/definitions/src/main/scala/exercise/BuildInfo.scala index 0fa9d63..358d521 100644 --- a/definitions/src/main/scala/exercise/BuildInfo.scala +++ b/definitions/src/main/scala/exercise/BuildInfo.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/definitions/src/main/scala/exercise/Library.scala b/definitions/src/main/scala/exercise/Library.scala index b286cd5..56e8e9c 100644 --- a/definitions/src/main/scala/exercise/Library.scala +++ b/definitions/src/main/scala/exercise/Library.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/definitions/src/main/scala/exercise/Section.scala b/definitions/src/main/scala/exercise/Section.scala index b436599..5533754 100644 --- a/definitions/src/main/scala/exercise/Section.scala +++ b/definitions/src/main/scala/exercise/Section.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/definitions/src/main/scala/org/scalaexercises/Test.scala b/definitions/src/main/scala/org/scalaexercises/Test.scala index a770f86..7785e9c 100644 --- a/definitions/src/main/scala/org/scalaexercises/Test.scala +++ b/definitions/src/main/scala/org/scalaexercises/Test.scala @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 47 Degrees + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sbt-exercise/src/main/scala/org/scalaexercises/exercises/sbtexercise/ExerciseCompilerPlugin.scala b/sbt-exercise/src/main/scala/org/scalaexercises/exercises/sbtexercise/ExerciseCompilerPlugin.scala index ca790bd..7f8bac8 100644 --- a/sbt-exercise/src/main/scala/org/scalaexercises/exercises/sbtexercise/ExerciseCompilerPlugin.scala +++ b/sbt-exercise/src/main/scala/org/scalaexercises/exercises/sbtexercise/ExerciseCompilerPlugin.scala @@ -1,7 +1,5 @@ /* - * scala-exercises - * - * Copyright 2015-2019 47 Degrees, LLC. + * Copyright 2020 47 Degrees Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -14,7 +12,6 @@ * 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. - * */ package org.scalaexercises.plugin