Skip to content

Commit

Permalink
Merge pull request #1 from Eleven19/develop
Browse files Browse the repository at this point in the history
Packaging as io.eleven19.mill
  • Loading branch information
DamianReeves committed Jan 10, 2024
2 parents 507d676 + 9f5c097 commit 4b9c238
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ jobs:
env:
PGP_PASSPHRASE: ${{ secrets.ELEVEN19_IO_PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.ELEVEN19_IO_PGP_SECRET_BASE64 }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.ELEVEN19_SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.ELEVEN19_SONATYPE_USERNAME }}
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ trait Plugin extends Cross.Module[String]
trait Publish extends CiReleaseModule {
def pomSettings = PomSettings(
description = "A mill plugin for cross-building projects",
organization = "io.github.eleven19",
organization = "io.eleven19.mill",
url = "https://github.com/eleven19/mill-crossbuild",
licenses = Seq(License.`Apache-2.0`),
versionControl = VersionControl.github("eleven19", "mill-crossbuild"),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package io.github.eleven19.mill.crossbuild
package io.eleven19.mill.crossbuild

import scala.language.reflectiveCalls

import mill._
import mill.define.DynamicModule
import mill.main.BuildInfo
import mill.scalajslib._
import mill.scalalib._
import mill.scalanativelib._
import scala.language.reflectiveCalls

trait CrossPlatform extends Module with DynamicModule { self =>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.eleven19.mill.crossbuild
package io.eleven19.mill.crossbuild

import mill._
import mill.scalalib._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.eleven19.mill.crossbuild
package io.eleven19.mill.crossbuild

import upickle.default.{ReadWriter => RW, macroRW}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
package io.github.eleven19.mill.crossbuild
package io.eleven19.mill.crossbuild
import io.eleven19.mill.crossbuild.Platform

class PlatformSuite extends munit.FunSuite {
test("Should have correct number of Platform variations") {
Expand Down

0 comments on commit 4b9c238

Please sign in to comment.