This is an automated email from the ASF dual-hosted git repository.

jlmonteiro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-chatterbox.git


The following commit(s) were added to refs/heads/master by this push:
     new dbb19ce  set the deploy plugin in the pom.xml
dbb19ce is described below

commit dbb19ce90d79e586c7e71b1fa2b518f943953a14
Author: Jean-Louis Monteiro <jeano...@gmail.com>
AuthorDate: Wed Mar 6 17:16:23 2019 +0100

    set the deploy plugin in the pom.xml
---
 .../apache/tomee/chatterbox/imap/adapter/ImapResourceAdapter.java   | 6 +++++-
 chatterbox-imap/pom.xml                                             | 2 +-
 pom.xml                                                             | 5 +++++
 3 files changed, 11 insertions(+), 2 deletions(-)

diff --git 
a/chatterbox-imap/chatterbox-imap-impl/src/main/java/org/apache/tomee/chatterbox/imap/adapter/ImapResourceAdapter.java
 
b/chatterbox-imap/chatterbox-imap-impl/src/main/java/org/apache/tomee/chatterbox/imap/adapter/ImapResourceAdapter.java
index c4bb7f0..91c1579 100644
--- 
a/chatterbox-imap/chatterbox-imap-impl/src/main/java/org/apache/tomee/chatterbox/imap/adapter/ImapResourceAdapter.java
+++ 
b/chatterbox-imap/chatterbox-imap-impl/src/main/java/org/apache/tomee/chatterbox/imap/adapter/ImapResourceAdapter.java
@@ -63,7 +63,11 @@ import java.util.logging.Logger;
 import java.util.regex.Pattern;
 import java.util.stream.Collectors;
 
-@Connector(description = "IMAP ResourceAdapter", displayName = "IMAP 
ResourceAdapter", eisType = "IMAP Adapter", version = "1.0")
+@Connector(
+        description = "IMAP ResourceAdapter",
+        displayName = "IMAP ResourceAdapter",
+        eisType = "IMAP Adapter",
+        version = "1.0")
 public class ImapResourceAdapter implements ResourceAdapter {
 
     private static final Logger LOGGER = 
Logger.getLogger(ImapResourceAdapter.class.getName());
diff --git a/chatterbox-imap/pom.xml b/chatterbox-imap/pom.xml
index 47ba1f3..f485db7 100644
--- a/chatterbox-imap/pom.xml
+++ b/chatterbox-imap/pom.xml
@@ -49,7 +49,7 @@
       <dependency>
         <groupId>org.tomitribe</groupId>
         <artifactId>tomitribe-util</artifactId>
-        <version>1.1.0</version>
+        <version>1.2.3</version>
       </dependency>
       <dependency>
         <groupId>junit</groupId>
diff --git a/pom.xml b/pom.xml
index ff06115..ce3f870 100644
--- a/pom.xml
+++ b/pom.xml
@@ -92,6 +92,11 @@
           <target>1.8</target>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <version>3.0.0-M1</version>
+      </plugin>
     </plugins>
   </build>
 

Reply via email to