Skip to content
This repository has been archived by the owner on May 26, 2020. It is now read-only.

Commit

Permalink
Add javax.mail dependency to fix no class found exception
Browse files Browse the repository at this point in the history
  • Loading branch information
mapingo committed Nov 6, 2017
1 parent b9e61ea commit 0bbc5a9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on [Keep a CHANGELOG](http://keepachangelog.com/). This project adheres to

## [Unreleased]

### Added
- javax.mail dependency to fix no class found exception

## [1.13.0] - 2017-11-01

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</modules>

<properties>
<common-bom.version>1.21.0</common-bom.version>
<common-bom.version>1.22.0</common-bom.version>
<cpp.repo.name>test-utils</cpp.repo.name>
</properties>

Expand Down
6 changes: 5 additions & 1 deletion test-utils-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
<groupId>org.glassfish</groupId>
<artifactId>javax.json</artifactId>
</dependency>
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
Expand Down Expand Up @@ -71,7 +75,7 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
Expand Down

0 comments on commit 0bbc5a9

Please sign in to comment.