Skip to content

Commit

Permalink
v3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marioserrano09 committed Dec 11, 2023
1 parent 4bfa5f5 commit 5b0939a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Add the following dependencies to project classpath
<dependency>
<groupId>tools.dynamia.modules</groupId>
<artifactId>tools.dynamia.modules.email</artifactId>
<version>3.0.0</version>
<version>3.0.2</version>
</dependency>
```

Expand All @@ -38,16 +38,16 @@ Add the following dependencies to project classpath
<dependency>
<groupId>tools.dynamia.modules</groupId>
<artifactId>tools.dynamia.modules.email.ui</artifactId>
<version>3.0.0</version>
<version>3.0.2</version>
</dependency>

```

**Gradle**

```groovy
compile 'tools.dynamia.modules:tools.dynamia.modules.email:3.0.0'
compile 'tools.dynamia.modules:tools.dynamia.modules.email.ui:3.0.0'
compile 'tools.dynamia.modules:tools.dynamia.modules.email:3.0.2'
compile 'tools.dynamia.modules:tools.dynamia.modules.email.ui:3.0.2'
```

## Usage
Expand All @@ -60,10 +60,10 @@ Main services are `EmailService` to send `EmailMessage` and `SMSService` to send
class SomeService { //spring service

@Autowired
EmailService emailService;
private EmailService emailService;

@Autowired
SMSService smsService;
private SMSService smsService;

public void sendNotification(Person person, String message) {

Expand Down

0 comments on commit 5b0939a

Please sign in to comment.