File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff 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
3838Or ` 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
6060public class DLockConfig {
6161
6262 @Bean
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ This module provides Spring Framework integration for **dlock** via the `@Lock`
1313To use ` @Lock ` , you must configure:
1414
15151 . 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" )
2121public class DLockConfig {
2222
2323 @Bean
You can’t perform that action at this time.
0 commit comments