Skip to content

Commit

Permalink
update jar publish info and LICENSE
Browse files Browse the repository at this point in the history
  • Loading branch information
fonhorst committed Aug 25, 2023
1 parent 15408ad commit 360f241
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 8 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
Binary file modified jars/spark-lightautoml_2.12-0.1.1.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion scala-lightautoml-transformers/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
66 changes: 60 additions & 6 deletions scala-lightautoml-transformers/publish.sbt
Original file line number Diff line number Diff line change
@@ -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 }
Expand Down

0 comments on commit 360f241

Please sign in to comment.