Skip to content

Commit

Permalink
Updated all package declarations (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
zodiia authored Jan 23, 2024
2 parents 58b3f40 + f4d66e8 commit 88d82ec
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ Simple DI is available on Maven Central. Add the dependency to your project:
**Gradle Kotlin**

```kt
implementation("moe.zodiia:simple-di:<latest version>")
implementation("dev.zodiia:simple-di:<latest version>")
```

**Gradle Groovy**

```groovy
implementation 'moe.zodiia:simple-di:<latest version>'
implementation 'dev.zodiia:simple-di:<latest version>'
```

**Maven**

```xml
<dependency>
<groupId>moe.zodiia</groupId>
<groupId>dev.zodiia</groupId>
<artifactId>simple-di</artifactId>
<version>latest version</version>
</dependency>
Expand All @@ -42,7 +42,7 @@ implementation 'moe.zodiia:simple-di:<latest version>'
To start injecting classes, simply use delegated properties with the `injection` method:

```kt
import moe.zodiia.simpledi.injection
import dev.zodiia.simpledi.injection

class Foo {
fun doSomething() {
Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
signing
}

group = "moe.zodiia"
group = "dev.zodiia"
version = "1.0.0"
description = "Simple dependency injection library for Kotlin (JVM)"

Expand Down Expand Up @@ -66,10 +66,10 @@ publishing {
developers {
developer {
name.set("Manon Grivot")
email.set("hey@zodiia.moe")
url.set("https://zodiia.moe")
email.set("hey@manongrivot.me")
url.set("https://manongrivot.me")
organization.set("Zodiia")
organizationUrl.set("https://zodiia.moe")
organizationUrl.set("https://zodiia.dev")
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package moe.zodiia.simpledi
package dev.zodiia.simpledi

import moe.zodiia.simpledi.providers.GlobalProvider
import moe.zodiia.simpledi.providers.InstanceProvider
import dev.zodiia.simpledi.providers.GlobalProvider
import dev.zodiia.simpledi.providers.InstanceProvider
import kotlin.properties.ReadOnlyProperty
import kotlin.reflect.KClass
import kotlin.reflect.KParameter
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package moe.zodiia.simpledi
package dev.zodiia.simpledi

import kotlin.reflect.KType

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package moe.zodiia.simpledi
package dev.zodiia.simpledi

/**
* Defines the scope of the injected instance, where it will be shared with other classes.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package moe.zodiia.simpledi.providers
package dev.zodiia.simpledi.providers

import moe.zodiia.simpledi.ComponentMap
import moe.zodiia.simpledi.InjectionScope
import dev.zodiia.simpledi.ComponentMap
import dev.zodiia.simpledi.InjectionScope
import kotlin.properties.ReadOnlyProperty
import kotlin.reflect.KProperty
import kotlin.reflect.KType
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package moe.zodiia.simpledi.providers
package dev.zodiia.simpledi.providers

import moe.zodiia.simpledi.ComponentMap
import moe.zodiia.simpledi.InjectionScope
import dev.zodiia.simpledi.ComponentMap
import dev.zodiia.simpledi.InjectionScope
import kotlin.properties.ReadOnlyProperty
import kotlin.reflect.KProperty
import kotlin.reflect.KType
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package moe.zodiia.simpledi
package dev.zodiia.simpledi

import org.junit.jupiter.api.Assertions
import org.junit.jupiter.api.Test
Expand Down

0 comments on commit 88d82ec

Please sign in to comment.