File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,11 @@ lazy val scala212 = "2.12.15"
24
24
lazy val scala3 = " 3.1.2"
25
25
lazy val supportedScalaVersions = List (scala213, scala212, scala3)
26
26
27
+ lazy val publishing = Seq (
28
+ organization := " com.indoorvivants.vcpkg" ,
29
+ sonatypeProfileName := " com.indoorvivants"
30
+ )
31
+
27
32
lazy val root = project
28
33
.in(file(" ." ))
29
34
.aggregate(
@@ -36,6 +41,7 @@ lazy val root = project
36
41
lazy val core = projectMatrix
37
42
.jvmPlatform(scalaVersions = supportedScalaVersions)
38
43
.in(file(" core" ))
44
+ .settings(publishing)
39
45
.settings(
40
46
name := " vcpkg-core" ,
41
47
crossScalaVersions := supportedScalaVersions,
@@ -48,6 +54,7 @@ lazy val `sbt-plugin` = projectMatrix
48
54
.in(file(" sbt-plugin" ))
49
55
.dependsOn(core)
50
56
.enablePlugins(ScriptedPlugin )
57
+ .settings(publishing)
51
58
.settings(
52
59
name := """ sbt-vcpkg""" ,
53
60
sbtPlugin := true ,
@@ -63,6 +70,7 @@ lazy val `mill-plugin` = projectMatrix
63
70
.jvmPlatform(scalaVersions = Seq (scala213))
64
71
.in(file(" mill-plugin" ))
65
72
.dependsOn(core)
73
+ .settings(publishing)
66
74
.settings(
67
75
name := """ mill-vcpkg""" ,
68
76
libraryDependencies += " com.lihaoyi" %% " mill-scalalib" % " 0.10.4" ,
You can’t perform that action at this time.
0 commit comments