Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update org to scalameta in order to fix releases #226

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions bin/test-release.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
set -eux
version=$1
coursier fetch \
com.geirsson:metaconfig-sconfig_2.12:$version \
com.geirsson:metaconfig-sconfig_2.13:$version \
com.geirsson:metaconfig-sconfig_2.12:$version \
com.geirsson:metaconfig-typesafe-config_2.12:$version \
com.geirsson:metaconfig-typesafe-config_2.13:$version \
com.geirsson:metaconfig-typesafe-config_2.12:$version \
org.scalameta:metaconfig-sconfig_2.12:$version \
org.scalameta:metaconfig-sconfig_2.13:$version \
org.scalameta:metaconfig-sconfig_2.12:$version \
org.scalameta:metaconfig-typesafe-config_2.12:$version \
org.scalameta:metaconfig-typesafe-config_2.13:$version \
org.scalameta:metaconfig-typesafe-config_2.12:$version \
-r sonatype:public
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ val ScalaVersions = List(scala213, scala212, scala3)
inThisBuild(
List(
useSuperShell := false,
organization := "com.geirsson",
organization := "org.scalameta",
version ~= { old => old.replace('+', '-') },
licenses := Seq(
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ with the following goals:
## Quick start

```scala
libraryDependencies += "com.geirsson" %% "metaconfig-typesafe-config" % "@VERSION@"
libraryDependencies += "org.scalameta" %% "metaconfig-typesafe-config" % "@VERSION@"
```

Next, write a case class for your user configuration.
Expand Down
6 changes: 3 additions & 3 deletions docs/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ There are alternatives to metaconfig that you might want to give a try first
## Getting started

```scala
libraryDependencies += "com.geirsson" %% "metaconfig-core" % "@VERSION@"
libraryDependencies += "org.scalameta" %% "metaconfig-core" % "@VERSION@"

// Use https://github.com/lightbend/config to parse HOCON
libraryDependencies += "com.geirsson" %% "metaconfig-typesafe-config" % "@VERSION@"
libraryDependencies += "org.scalameta" %% "metaconfig-typesafe-config" % "@VERSION@"
```

Use this import to access the metaconfig API
Expand Down Expand Up @@ -541,7 +541,7 @@ To generate documentation for you configuration, add a dependency to the
following module

```scala
libraryDependencies += "com.geirsson" %% "metaconfig-docs" % "@VERSION@"
libraryDependencies += "org.scalameta" %% "metaconfig-docs" % "@VERSION@"
```

First define your configuration
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Metaconfig

[![Maven](https://img.shields.io/maven-central/v/com.geirsson/metaconfig-core_2.12.svg?label=maven)](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22metaconfig-core_2.12%22)
[![Maven](https://img.shields.io/maven-central/v/org.scalameta/metaconfig-core_2.12.svg?label=maven)](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22metaconfig-core_2.12%22)
![](https://github.com/scalameta/metaconfig/workflows/CI/badge.svg)

Configuration library used by
Expand Down
Loading