Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- uses: actions/cache@v3
java-version: 11
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('**/pom.xml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mvn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<img src="https://www.jcabi.com/logo-square.svg" width="64px" height="64px" />
# [![Jcabi Logo](https://www.jcabi.com/logo-square.svg)](https://www.jcabi.com/logo-square.svg)

[![EO principles respected here](https://www.elegantobjects.org/badge.svg)](https://www.elegantobjects.org)
[![DevOps By Rultor.com](https://www.rultor.com/b/jcabi/jcabi-email)](https://www.rultor.com/p/jcabi/jcabi-email)
Expand Down Expand Up @@ -42,6 +42,7 @@ postman.send(
```

Make sure you have these dependencies:

```xml
<dependency>
<groupId>javax.mail</groupId>
Expand Down Expand Up @@ -70,6 +71,6 @@ the `master` branch, if they look correct.

Please run Maven build before submitting a pull request:

```
$ mvn clean install -Pqulice
```bash
mvn clean install -Pqulice
```
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/email/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* <p>The only dependency you need is (check our latest version available
* at <a href="http://email.jcabi.com">email.jcabi.com</a>):
*
* <pre>&lt;depedency&gt;
* <pre>&lt;dependency&gt;
* &lt;groupId&gt;com.jcabi&lt;/groupId&gt;
* &lt;artifactId&gt;jcabi-email&lt;/artifactId&gt;
* &lt;/dependency&gt;</pre>
Expand Down
Loading