diff --git a/LICENSE b/LICENSE index 93646b4..482a8db 100644 --- a/LICENSE +++ b/LICENSE @@ -187,7 +187,7 @@ identification within third-party archives. Copyright 2022 (с) Ryzhkov Alexander, Vakhrushev Anton, Savchenko Maksim, - Beknazarov Nazar, Penkin Grigorii, Damdinov Rinchin, + Beknazarov Nazar, Damdinov Rinchin, Nikolay Butakov, Azamat Gainetdinov, Sergey Teryoshkin, Denis Nasonov Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/jars/spark-lightautoml_2.12-0.1.1.jar b/jars/spark-lightautoml_2.12-0.1.1.jar index 7c35edf..0e0cf0f 100644 Binary files a/jars/spark-lightautoml_2.12-0.1.1.jar and b/jars/spark-lightautoml_2.12-0.1.1.jar differ diff --git a/scala-lightautoml-transformers/build.sbt b/scala-lightautoml-transformers/build.sbt index 61810e5..2411ef5 100644 --- a/scala-lightautoml-transformers/build.sbt +++ b/scala-lightautoml-transformers/build.sbt @@ -14,7 +14,7 @@ resolvers ++= Seq( ) libraryDependencies ++= Seq( - "com.microsoft.azure" % "synapseml_2.12" % "0.9.5", + "com.microsoft.azure" % "synapseml_2.12" % "0.11.1" % "provided", "org.apache.spark" %% "spark-core" % "3.3.1" % "provided", "org.apache.spark" %% "spark-sql" % "3.3.1" % "provided", "org.apache.spark" %% "spark-mllib" % "3.3.1" % "provided", diff --git a/scala-lightautoml-transformers/publish.sbt b/scala-lightautoml-transformers/publish.sbt index ddc86b9..2527340 100644 --- a/scala-lightautoml-transformers/publish.sbt +++ b/scala-lightautoml-transformers/publish.sbt @@ -1,26 +1,80 @@ -ThisBuild / organization := "io.github.fonhorst" -ThisBuild / organizationName := "fonhorst" -ThisBuild / organizationHomepage := Some(url("https://github.com/fonhorst")) +ThisBuild / organization := "io.github.sb-ai-lab" +ThisBuild / organizationName := "sb-ai-lab" +ThisBuild / organizationHomepage := Some(url("https://github.com/sb-ai-lab/")) ThisBuild / scmInfo := Some( ScmInfo( - url("https://github.com/fonhorst/LightAutoML_Spark"), - "scm:git@github.com:fonhorst/LightAutoML_Spark.git" + url("https://github.com/sb-ai-lab/SLAMA"), + "scm:git@github.com:sb-ai-lab/SLAMA.git" ) ) ThisBuild / developers := List( + Developer( + id = "alexmryzhkov", + name = "Alexander Ryzhkov", + email = "alexmryzhkov@gmail.com", + url = url("https://github.com/alexmryzhkov") + ), + Developer( + id = "btbpanda", + name = "Anton Vakhrushev", + email = "btbpanda@gmail.com", + url = url("https://github.com/btbpanda") + ), + Developer( + id = "DESimakov", + name = "Dmitrii Simakov", + email = "dmitryevsimakov@gmail.com", + url = url("https://github.com/DESimakov") + ), + Developer( + id = "dev-rinchin", + name = "Rinchin Damdinov", + email = "damdinovr@gmail.com", + url = url("https://github.com/dev-rinchin") + ), + Developer( + id = "Cybsloth", + name = "Alexander Kirilin", + email = "adkirilin@gmail.com", + url = url("https://github.com/Cybsloth") + ), + Developer( + id = "VaBun", + name = "Vasilii Bunakov", + email = "va.bunakov@gmail.com", + url = url("https://github.com/VaBun") + ), Developer( id = "fonhorst", name = "Nikolay Butakov", email = "alipoov.nb@gmail.com", url = url("https://github.com/fonhorst") + ), + Developer( + id = "netang", + name = "Azamat Gainetdinov", + email = "Mr.g.azamat@gmail.com", + url = url("https://github.com/netang") + ), + Developer( + id = "se-teryoshkin", + name = "Sergey Teryoshkin", + email = "se.teryoshkin@gmail.com", + url = url("https://github.com/se-teryoshkin") + ), + Developer( + id = "dnasonov", + name = "Denis Nasonov", + email = "denis.nasonov@gmail.com", + url = url("https://github.com/dnasonov") ) ) ThisBuild / description := "Scala-based implementations of Transformers/Estimators for SLAMA project" ThisBuild / licenses := List("Apache 2.0" -> new URL("http://www.apache.org/licenses/")) -ThisBuild / homepage := Some(url("https://github.com/fonhorst/LightAutoML_Spark")) +ThisBuild / homepage := Some(url("https://github.com/sb-ai-lab/SLAMA")) // Remove all additional repository other than Maven Central from POM ThisBuild / pomIncludeRepository := { _ => false }