@@ -12,6 +12,16 @@ inThisBuild(Seq(
1212 organization := " io.udash" ,
1313 resolvers += Resolver .defaultLocal,
1414 sonatypeCredentialHost := Sonatype .sonatypeCentralHost,
15+ homepage := Some (url(" https://udash.io" )),
16+ licenses := Seq (License .Apache2 ),
17+ scmInfo := Some (ScmInfo (
18+ browseUrl = url(" https://github.com/UdashFramework/udash-core" ),
19+ connection
= " scm:git:[email protected] :UdashFramework/udash-core.git" ,
20+ devConnection
= Some (
" scm:git:[email protected] :UdashFramework/udash-core.git" ),
21+ )),
22+ developers := List (
23+ Developer (
" ddworak" ,
" Dawid Dworak" ,
" [email protected] " , url(
" https://github.com/ddworak" )),
24+ ),
1525))
1626
1727val forIdeaImport = System .getProperty(" idea.managed" , " false" ).toBoolean && System .getProperty(" idea.runid" ) == null
@@ -23,20 +33,6 @@ val browserCapabilities: Capabilities = {
2333 new FirefoxOptions ().setHeadless(true ).setLogLevel(FirefoxDriverLogLevel .WARN )
2434}
2535
26- // Deployment configuration
27- val deploymentConfiguration = Seq (
28- pomIncludeRepository := { _ => false },
29- licenses := Seq (License .Apache2 ),
30- scmInfo := Some (ScmInfo (
31- browseUrl = url(" https://github.com/UdashFramework/udash-core" ),
32- connection
= " scm:git:[email protected] :UdashFramework/udash-core.git" ,
33- devConnection
= Some (
" scm:git:[email protected] :UdashFramework/udash-core.git" ),
34- )),
35- developers := List (
36- Developer (
" ddworak" ,
" Dawid Dworak" ,
" [email protected] " , url(
" https://github.com/ddworak" )),
37- ),
38- )
39-
4036val commonSettings = Seq (
4137 scalaVersion := Dependencies .versionOfScala,
4238 crossScalaVersions := Seq (Dependencies .versionOfScala),
@@ -66,7 +62,8 @@ val commonSettings = Seq(
6662 Test / ideOutputDirectory := Some (target.value.getParentFile / " out/test" ),
6763 libraryDependencies ++= Dependencies .compilerPlugins.value,
6864 libraryDependencies ++= Dependencies .commonTestDeps.value,
69- ) ++ deploymentConfiguration
65+ pomIncludeRepository := { _ => false },
66+ )
7067
7168val commonJsSettings = commonSettings ++ Seq (
7269 Test / scalaJSStage := FastOptStage ,
0 commit comments