Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

Commit

Permalink
[minor] rename packages
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbrooks12 committed Aug 21, 2020
1 parent d835616 commit c4ede52
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.4.0 - 2020-08-21

- Bintray

## 3.3.0 - 2020-08-21

- Adds helper methods to disable logging in production, and to configure multiple logging targets
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Clog is designed with the following goals in mind:
```kotlin
repositories {
jcenter()
maven(url = "https://dl.bintray.com/javaeden/Eden")
maven(url = "https://dl.bintray.com/copper-leaf/copper-leaf")
}

// for plain JVM or Android projects
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/clog-base.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,4 @@ releaseVersion = projectVersion.releaseVersion
fullVersion = projectVersion.fullVersion

version = projectVersion
group = "clog"
group = "io.copper-leaf"
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ publishing {
password = ghToken
}
}
maven(url = "https://api.bintray.com/maven/cjbrooks12/maven/clog/;publish=1;override=1;") {
maven(url = "https://api.bintray.com/maven/copper-leaf/copper-leaf/clog/;publish=1;override=1;") {
name = "Bintray"
credentials {
username = bintrayUser
Expand Down
2 changes: 2 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ rootProject.name = "clog"

include(":core")
include(":docs")

project(":core").name = "clog"

0 comments on commit c4ede52

Please sign in to comment.