Skip to content

Commit a29e1e5

Browse files
committed
Fix README with new package name io.github.pmalirz.dlock
1 parent d3ce1ef commit a29e1e5

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,22 @@ Add the following to your `build.gradle`:
3131

3232
```kotlin
3333
// build.gradle.kts
34-
implementation("com.dlock:dlock-spring:3.0.0-SNAPSHOT")
35-
implementation("com.dlock:dlock-jdbc:3.0.0-SNAPSHOT")
34+
implementation("io.github.pmalirz:dlock-spring:3.0.0")
35+
implementation("io.github.pmalirz:dlock-jdbc:3.0.0")
3636
```
3737

3838
Or `pom.xml`:
3939

4040
```xml
4141
<dependency>
42-
<groupId>com.dlock</groupId>
42+
<groupId>io.github.pmalirz</groupId>
4343
<artifactId>dlock-spring</artifactId>
44-
<version>3.0.0-SNAPSHOT</version>
44+
<version>3.0.0</version>
4545
</dependency>
4646
<dependency>
47-
<groupId>com.dlock</groupId>
47+
<groupId>io.github.pmalirz</groupId>
4848
<artifactId>dlock-jdbc</artifactId>
49-
<version>3.0.0-SNAPSHOT</version>
49+
<version>3.0.0</version>
5050
</dependency>
5151
```
5252

@@ -56,7 +56,7 @@ Enable the aspect and configure the `KeyLock` bean.
5656

5757
```java
5858
@Configuration
59-
@ComponentScan("com.dlock") // Scan for LockAspect
59+
@ComponentScan("io.github.pmalirz.dlock") // Scan for LockAspect
6060
public class DLockConfig {
6161

6262
@Bean

dlock-spring/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ This module provides Spring Framework integration for **dlock** via the `@Lock`
1313
To use `@Lock`, you must configure:
1414

1515
1. A `KeyLock` bean (the lock implementation).
16-
2. Enable component scanning for `com.dlock` (so the Aspect is detected).
16+
2. Enable component scanning for `io.github.pmalirz.dlock` (so the Aspect is detected).
1717

1818
```java
1919
@Configuration
20-
@ComponentScan("com.dlock")
20+
@ComponentScan("io.github.pmalirz.dlock")
2121
public class DLockConfig {
2222

2323
@Bean

0 commit comments

Comments
 (0)