[jira] [Commented] (KARAF-6061) Help for shell: commands are not properly formatted

2019-01-17 Thread Martin Lichtin (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6061?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745843#comment-16745843
 ] 

Martin Lichtin commented on KARAF-6061:
---

{noformat}
GREP_COLOR=1;32
TERM=xterm
SHELL=/bin/bash
QTDIR=/usr/lib64/qt-3.3
QTINC=/usr/lib64/qt-3.3/include
SSH_TTY=/dev/pts/0
USER=int1
LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.tbz=01;31:*.tbz2=01;31:*.bz=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:
JAVA_HOME=/usr/java/jdk1.8.0_131-x86-64
LANG=en_US.UTF-8
PS1=\u@\h \W>
HISTCONTROL=ignoredups
SHLVL=1
VISUAL=vi
QTLIB=/usr/lib64/qt-3.3/lib
LESSOPEN=||/usr/bin/lesspipe.sh %s
G_BROKEN_FILENAMES=1
_=/bin/env
{noformat}

> Help for shell: commands are not properly formatted
> ---
>
> Key: KARAF-6061
> URL: https://issues.apache.org/jira/browse/KARAF-6061
> Project: Karaf
>  Issue Type: Wish
>  Components: karaf
>Affects Versions: 4.1.7
>Reporter: Martin Lichtin
>Assignee: Jean-Baptiste Onofré
>Priority: Minor
>  Labels: shell
> Fix For: 4.1.8, 4.2.3
>
>
> A 'nice' help looks like
> {noformat}
> System/admin@ccstp1()> help log:set
> DESCRIPTION
>     log:set
>     Sets the log level.
> SYNTAX
>     log:set level [logger]
> ARGUMENTS
>     level
>     The log level to set (TRACE, DEBUG, INFO, WARN, ERROR) or 
> DEFAULT to unset
>     logger
>     Logger name or ROOT (default)
> {noformat}
> whereas shell: command help looks like:
> {noformat}
> System/admin@ccstp1()> help shell:while
> while -  while loop
>    Usage: while { condition } { action }
>   -? --help   
>  Show help
> {noformat}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-5333) UnsupportedCharsetException: cp65001 and unprintable characters from karaf 4.1.2 console

2019-01-17 Thread comicosmos (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-5333?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745698#comment-16745698
 ] 

comicosmos commented on KARAF-5333:
---

Just download and unzip karaf 4.2.2 on win a win10, Chinese locale. Still 
observed the issue.

It may be related to log4j finally. But...I just need a tool ready to use and 
not have the willing to dig that deep.

 

A few search online and I had the fix as this:

 

Open the karaf.bat, search for "java_opt". This takes me to line 257.

set DEFAULT_JAVA_OPTS=-Xms%JAVA_MIN_MEM% -Xmx%JAVA_MAX_MEM% 
-Dcom.sun.management.jmxremote  -XX:+UnlockDiagnosticVMOptions

Append property

" -Dsun.stdout.encoding=UTF-8 -Dsun.err.encoding=UTF-8"

The whole line looks like this:

set DEFAULT_JAVA_OPTS=-Xms%JAVA_MIN_MEM% -Xmx%JAVA_MAX_MEM% 
-Dcom.sun.management.jmxremote  -XX:+UnlockDiagnosticVMOptions 
-Dsun.stdout.encoding=UTF-8 -Dsun.err.encoding=UTF-8

 

issue resolved.

 

 

>  UnsupportedCharsetException: cp65001 and unprintable characters from karaf 
> 4.1.2 console
> -
>
> Key: KARAF-5333
> URL: https://issues.apache.org/jira/browse/KARAF-5333
> Project: Karaf
>  Issue Type: Bug
>  Components: karaf
>Affects Versions: 4.1.2
> Environment: Windows OS, Java 8
>Reporter: Xilai Dai
>Assignee: Guillaume Nodet
>Priority: Major
> Fix For: 4.2.0.M1, 4.1.5
>
> Attachments: gitcmd.png, jline-3.4.0.jar, lucida.png, 
> pax-logging-api-1.10.1.jar, pax-logging-log4j2-1.10.1.jar
>
>
> In case of Windows OS and the cp65001 CodePage setting, there is 
> UnsupportedCharsetException: cp65001 happening and the console display really 
> not good many of the unprintable characters showing ...
> {code}
> 2017-08-29 11:34:41,204 CM Configuration Updater (Update: 
> pid=org.ops4j.pax.logging) ERROR Unable to inject fields into
> builder class for plugin type class 
> org.apache.logging.log4j.core.appender.ConsoleAppender, element Console. 
> java.nio.ch
> arset.UnsupportedCharsetException: cp65001
> at java.nio.charset.Charset.forName(Charset.java:531)
> at 
> org.apache.logging.log4j.util.PropertiesUtil.getCharsetProperty(PropertiesUtil.java:146)
> at 
> org.apache.logging.log4j.util.PropertiesUtil.getCharsetProperty(PropertiesUtil.java:134)
> at 
> org.apache.logging.log4j.core.appender.ConsoleAppender$Target.getCharset(ConsoleAppender.java:85)
> at 
> org.apache.logging.log4j.core.appender.ConsoleAppender$Target$1.getDefaultCharset(ConsoleAppender.java:71)
> at 
> org.apache.logging.log4j.core.appender.ConsoleAppender$Builder.build(ConsoleAppender.java:218)
> at 
> org.apache.logging.log4j.core.appender.ConsoleAppender$Builder.build(ConsoleAppender.java:185)
> at 
> org.apache.logging.log4j.core.config.plugins.util.PluginBuilder.build(PluginBuilder.java:122)
> at 
> org.apache.logging.log4j.core.config.AbstractConfiguration.createPluginObject(AbstractConfiguration.java:952)
> at 
> org.apache.logging.log4j.core.config.AbstractConfiguration.createConfiguration(AbstractConfiguration.java:892
> )
> at 
> org.apache.logging.log4j.core.config.AbstractConfiguration.createConfiguration(AbstractConfiguration.java:884
> )
> at 
> org.apache.logging.log4j.core.config.AbstractConfiguration.doConfigure(AbstractConfiguration.java:508)
> at 
> org.apache.logging.log4j.core.config.AbstractConfiguration.initialize(AbstractConfiguration.java:232)
> at 
> org.apache.logging.log4j.core.config.AbstractConfiguration.start(AbstractConfiguration.java:244)
> at 
> org.apache.logging.log4j.core.LoggerContext.setConfiguration(LoggerContext.java:545)
> at 
> org.apache.logging.log4j.core.LoggerContext.start(LoggerContext.java:261)
> at 
> org.ops4j.pax.logging.log4j2.internal.PaxLoggingServiceImpl.doUpdate(PaxLoggingServiceImpl.java:213)
> at 
> org.ops4j.pax.logging.log4j2.internal.PaxLoggingServiceImpl.updated(PaxLoggingServiceImpl.java:158)
> at 
> org.ops4j.pax.logging.log4j2.internal.PaxLoggingServiceImpl$1ManagedPaxLoggingService.updated(PaxLoggingServi
> ceImpl.java:426)
> at 
> org.apache.felix.cm.impl.helper.ManagedServiceTracker.updated(ManagedServiceTracker.java:189)
> at 
> org.apache.felix.cm.impl.helper.ManagedServiceTracker.updateService(ManagedServiceTracker.java:152)
> at 
> org.apache.felix.cm.impl.helper.ManagedServiceTracker.provideConfiguration(ManagedServiceTracker.java:85)
> at 
> org.apache.felix.cm.impl.ConfigurationManager$UpdateConfiguration.run(ConfigurationManager.java:1776)
> at org.apache.felix.cm.impl.UpdateThread.run0(UpdateThread.java:141)
> at 

[jira] [Comment Edited] (KARAF-5333) UnsupportedCharsetException: cp65001 and unprintable characters from karaf 4.1.2 console

2019-01-17 Thread comicosmos (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-5333?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745698#comment-16745698
 ] 

comicosmos edited comment on KARAF-5333 at 1/18/19 1:39 AM:


Just download and unzip karaf 4.2.2 on win a win10, Chinese locale. Still 
observed the issue.

It may be related to log4j finally. But...I just need a tool ready to use and 
not have the willing to dig that deep.

 

A few search online and I had the fix as this:

 

Open the karaf.bat, search for "java_opt". This takes me to line 257.

set DEFAULT_JAVA_OPTS=-Xms%JAVA_MIN_MEM% -Xmx%JAVA_MAX_MEM% 
-Dcom.sun.management.jmxremote  -XX:+UnlockDiagnosticVMOptions

Append property

" -Dsun.stdout.encoding=UTF-8 -Dsun.err.encoding=UTF-8"

The whole line looks like this:

set DEFAULT_JAVA_OPTS=-Xms%JAVA_MIN_MEM% -Xmx%JAVA_MAX_MEM% 
-Dcom.sun.management.jmxremote  -XX:+UnlockDiagnosticVMOptions 
-Dsun.stdout.encoding=UTF-8 -Dsun.err.encoding=UTF-8

 

issue resolved, at least at my side.

 

 


was (Author: comicosmos):
Just download and unzip karaf 4.2.2 on win a win10, Chinese locale. Still 
observed the issue.

It may be related to log4j finally. But...I just need a tool ready to use and 
not have the willing to dig that deep.

 

A few search online and I had the fix as this:

 

Open the karaf.bat, search for "java_opt". This takes me to line 257.

set DEFAULT_JAVA_OPTS=-Xms%JAVA_MIN_MEM% -Xmx%JAVA_MAX_MEM% 
-Dcom.sun.management.jmxremote  -XX:+UnlockDiagnosticVMOptions

Append property

" -Dsun.stdout.encoding=UTF-8 -Dsun.err.encoding=UTF-8"

The whole line looks like this:

set DEFAULT_JAVA_OPTS=-Xms%JAVA_MIN_MEM% -Xmx%JAVA_MAX_MEM% 
-Dcom.sun.management.jmxremote  -XX:+UnlockDiagnosticVMOptions 
-Dsun.stdout.encoding=UTF-8 -Dsun.err.encoding=UTF-8

 

issue resolved.

 

 

>  UnsupportedCharsetException: cp65001 and unprintable characters from karaf 
> 4.1.2 console
> -
>
> Key: KARAF-5333
> URL: https://issues.apache.org/jira/browse/KARAF-5333
> Project: Karaf
>  Issue Type: Bug
>  Components: karaf
>Affects Versions: 4.1.2
> Environment: Windows OS, Java 8
>Reporter: Xilai Dai
>Assignee: Guillaume Nodet
>Priority: Major
> Fix For: 4.2.0.M1, 4.1.5
>
> Attachments: gitcmd.png, jline-3.4.0.jar, lucida.png, 
> pax-logging-api-1.10.1.jar, pax-logging-log4j2-1.10.1.jar
>
>
> In case of Windows OS and the cp65001 CodePage setting, there is 
> UnsupportedCharsetException: cp65001 happening and the console display really 
> not good many of the unprintable characters showing ...
> {code}
> 2017-08-29 11:34:41,204 CM Configuration Updater (Update: 
> pid=org.ops4j.pax.logging) ERROR Unable to inject fields into
> builder class for plugin type class 
> org.apache.logging.log4j.core.appender.ConsoleAppender, element Console. 
> java.nio.ch
> arset.UnsupportedCharsetException: cp65001
> at java.nio.charset.Charset.forName(Charset.java:531)
> at 
> org.apache.logging.log4j.util.PropertiesUtil.getCharsetProperty(PropertiesUtil.java:146)
> at 
> org.apache.logging.log4j.util.PropertiesUtil.getCharsetProperty(PropertiesUtil.java:134)
> at 
> org.apache.logging.log4j.core.appender.ConsoleAppender$Target.getCharset(ConsoleAppender.java:85)
> at 
> org.apache.logging.log4j.core.appender.ConsoleAppender$Target$1.getDefaultCharset(ConsoleAppender.java:71)
> at 
> org.apache.logging.log4j.core.appender.ConsoleAppender$Builder.build(ConsoleAppender.java:218)
> at 
> org.apache.logging.log4j.core.appender.ConsoleAppender$Builder.build(ConsoleAppender.java:185)
> at 
> org.apache.logging.log4j.core.config.plugins.util.PluginBuilder.build(PluginBuilder.java:122)
> at 
> org.apache.logging.log4j.core.config.AbstractConfiguration.createPluginObject(AbstractConfiguration.java:952)
> at 
> org.apache.logging.log4j.core.config.AbstractConfiguration.createConfiguration(AbstractConfiguration.java:892
> )
> at 
> org.apache.logging.log4j.core.config.AbstractConfiguration.createConfiguration(AbstractConfiguration.java:884
> )
> at 
> org.apache.logging.log4j.core.config.AbstractConfiguration.doConfigure(AbstractConfiguration.java:508)
> at 
> org.apache.logging.log4j.core.config.AbstractConfiguration.initialize(AbstractConfiguration.java:232)
> at 
> org.apache.logging.log4j.core.config.AbstractConfiguration.start(AbstractConfiguration.java:244)
> at 
> org.apache.logging.log4j.core.LoggerContext.setConfiguration(LoggerContext.java:545)
> at 
> org.apache.logging.log4j.core.LoggerContext.start(LoggerContext.java:261)
> at 
> 

[jira] [Commented] (KARAF-6093) Error putting an attachment on a SOAP message via CXF due to javax.xml.soap

2019-01-17 Thread Brandan Jeter (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6093?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745638#comment-16745638
 ] 

Brandan Jeter commented on KARAF-6093:
--

Posted another PR that fixes another related issue that came up: 
https://github.com/apache/karaf/pull/728

> Error putting an attachment on a SOAP message via CXF due to javax.xml.soap
> ---
>
> Key: KARAF-6093
> URL: https://issues.apache.org/jira/browse/KARAF-6093
> Project: Karaf
>  Issue Type: Bug
>  Components: karaf
>Affects Versions: 4.2.2
>Reporter: Brandan Jeter
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>
> As of 
> [https://github.com/brjeter/karaf/commit/50ccdc93a1ff1e619f808e13f38fbacbb26213c0#diff-9142d4f795c7f69aa9e8b7bc87e18a59L345,]
>  javax.activation is expected to be exported by a servicemix bundle instead 
> of bundle 0. This is causing a LinkageError because javax.xml.soap uses 
> javax.activation but is still being exported by bundle 0.
> {code:java}
> loader constraint violation: when resolving method 
> "javax.xml.soap.SOAPMessage.createAttachmentPart(Ljavax/activation/DataHandler;)Ljavax/xml/soap/AttachmentPart;"
>  the class loader (instance of 
> org/eclipse/osgi/internal/loader/EquinoxClassLoader) of the current class, 
> org/apache/cxf/binding/soap/saaj/SAAJInInterceptor, and the class loader 
> (instance of ) for the method's defining class, 
> javax/xml/soap/SOAPMessage, have different Class objects for the type 
> javax/activation/DataHandler used in the signature
> {code}
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6093) Error putting an attachment on a SOAP message via CXF due to javax.xml.soap

2019-01-17 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6093?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745637#comment-16745637
 ] 

ASF GitHub Bot commented on KARAF-6093:
---

brjeter commented on pull request #728: [KARAF-6093] Fix jaxws packages being 
exports by bundle 0
URL: https://github.com/apache/karaf/pull/728
 
 
   Removing `javax.xml.soap` from `jre.properties` wasn't enough 
(https://github.com/apache/karaf/pull/719). Also needed to remove 
`javax.xml.ws` packages since they use `javax.xml.soap`.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Error putting an attachment on a SOAP message via CXF due to javax.xml.soap
> ---
>
> Key: KARAF-6093
> URL: https://issues.apache.org/jira/browse/KARAF-6093
> Project: Karaf
>  Issue Type: Bug
>  Components: karaf
>Affects Versions: 4.2.2
>Reporter: Brandan Jeter
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>
> As of 
> [https://github.com/brjeter/karaf/commit/50ccdc93a1ff1e619f808e13f38fbacbb26213c0#diff-9142d4f795c7f69aa9e8b7bc87e18a59L345,]
>  javax.activation is expected to be exported by a servicemix bundle instead 
> of bundle 0. This is causing a LinkageError because javax.xml.soap uses 
> javax.activation but is still being exported by bundle 0.
> {code:java}
> loader constraint violation: when resolving method 
> "javax.xml.soap.SOAPMessage.createAttachmentPart(Ljavax/activation/DataHandler;)Ljavax/xml/soap/AttachmentPart;"
>  the class loader (instance of 
> org/eclipse/osgi/internal/loader/EquinoxClassLoader) of the current class, 
> org/apache/cxf/binding/soap/saaj/SAAJInInterceptor, and the class loader 
> (instance of ) for the method's defining class, 
> javax/xml/soap/SOAPMessage, have different Class objects for the type 
> javax/activation/DataHandler used in the signature
> {code}
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6061) Help for shell: commands are not properly formatted

2019-01-17 Thread JIRA


[ 
https://issues.apache.org/jira/browse/KARAF-6061?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745483#comment-16745483
 ] 

Jean-Baptiste Onofré commented on KARAF-6061:
-

Interesting: can you please provide {{env}} to get your term variable ?

> Help for shell: commands are not properly formatted
> ---
>
> Key: KARAF-6061
> URL: https://issues.apache.org/jira/browse/KARAF-6061
> Project: Karaf
>  Issue Type: Wish
>  Components: karaf
>Affects Versions: 4.1.7
>Reporter: Martin Lichtin
>Assignee: Jean-Baptiste Onofré
>Priority: Minor
>  Labels: shell
> Fix For: 4.1.8, 4.2.3
>
>
> A 'nice' help looks like
> {noformat}
> System/admin@ccstp1()> help log:set
> DESCRIPTION
>     log:set
>     Sets the log level.
> SYNTAX
>     log:set level [logger]
> ARGUMENTS
>     level
>     The log level to set (TRACE, DEBUG, INFO, WARN, ERROR) or 
> DEFAULT to unset
>     logger
>     Logger name or ROOT (default)
> {noformat}
> whereas shell: command help looks like:
> {noformat}
> System/admin@ccstp1()> help shell:while
> while -  while loop
>    Usage: while { condition } { action }
>   -? --help   
>  Show help
> {noformat}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Resolved] (KARAF-6100) Align narayana version with pax-* projects

2019-01-17 Thread JIRA


 [ 
https://issues.apache.org/jira/browse/KARAF-6100?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré resolved KARAF-6100.
-
Resolution: Fixed

> Align narayana version with pax-* projects
> --
>
> Key: KARAF-6100
> URL: https://issues.apache.org/jira/browse/KARAF-6100
> Project: Karaf
>  Issue Type: Task
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>
> As discussed with Grzegorz Grzybek, it makes sense to align narayana with 
> pax* projects, so 5.8.2.Final for Karaf 4.2.3.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6100) Align narayana version with pax-* projects

2019-01-17 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6100?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745478#comment-16745478
 ] 

ASF subversion and git services commented on KARAF-6100:


Commit de8a1dc3ec65c48bd37ccf38dd55d55da0d5457f in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=de8a1dc ]

Merge pull request #727 from jbonofre/KARAF-6100

[KARAF-6100] Align narayana version with the one in pax* projects

> Align narayana version with pax-* projects
> --
>
> Key: KARAF-6100
> URL: https://issues.apache.org/jira/browse/KARAF-6100
> Project: Karaf
>  Issue Type: Task
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>
> As discussed with Grzegorz Grzybek, it makes sense to align narayana with 
> pax* projects, so 5.8.2.Final for Karaf 4.2.3.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6061) Help for shell: commands are not properly formatted

2019-01-17 Thread JIRA


[ 
https://issues.apache.org/jira/browse/KARAF-6061?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745484#comment-16745484
 ] 

Jean-Baptiste Onofré commented on KARAF-6061:
-

I will setup a CentOS VM to test there with CentOS default setting.

> Help for shell: commands are not properly formatted
> ---
>
> Key: KARAF-6061
> URL: https://issues.apache.org/jira/browse/KARAF-6061
> Project: Karaf
>  Issue Type: Wish
>  Components: karaf
>Affects Versions: 4.1.7
>Reporter: Martin Lichtin
>Assignee: Jean-Baptiste Onofré
>Priority: Minor
>  Labels: shell
> Fix For: 4.1.8, 4.2.3
>
>
> A 'nice' help looks like
> {noformat}
> System/admin@ccstp1()> help log:set
> DESCRIPTION
>     log:set
>     Sets the log level.
> SYNTAX
>     log:set level [logger]
> ARGUMENTS
>     level
>     The log level to set (TRACE, DEBUG, INFO, WARN, ERROR) or 
> DEFAULT to unset
>     logger
>     Logger name or ROOT (default)
> {noformat}
> whereas shell: command help looks like:
> {noformat}
> System/admin@ccstp1()> help shell:while
> while -  while loop
>    Usage: while { condition } { action }
>   -? --help   
>  Show help
> {noformat}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6100) Align narayana version with pax-* projects

2019-01-17 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6100?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745477#comment-16745477
 ] 

ASF subversion and git services commented on KARAF-6100:


Commit 424825d6db258dbc833de89f9bdd26890f8e58ec in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=424825d ]

[KARAF-6100] Align narayana version with the one in pax* projects


> Align narayana version with pax-* projects
> --
>
> Key: KARAF-6100
> URL: https://issues.apache.org/jira/browse/KARAF-6100
> Project: Karaf
>  Issue Type: Task
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>
> As discussed with Grzegorz Grzybek, it makes sense to align narayana with 
> pax* projects, so 5.8.2.Final for Karaf 4.2.3.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6100) Align narayana version with pax-* projects

2019-01-17 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6100?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745476#comment-16745476
 ] 

ASF GitHub Bot commented on KARAF-6100:
---

jbonofre commented on pull request #727: [KARAF-6100] Align narayana version 
with the one in pax* projects
URL: https://github.com/apache/karaf/pull/727
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Align narayana version with pax-* projects
> --
>
> Key: KARAF-6100
> URL: https://issues.apache.org/jira/browse/KARAF-6100
> Project: Karaf
>  Issue Type: Task
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>
> As discussed with Grzegorz Grzybek, it makes sense to align narayana with 
> pax* projects, so 5.8.2.Final for Karaf 4.2.3.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6100) Align narayana version with pax-* projects

2019-01-17 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6100?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745479#comment-16745479
 ] 

ASF subversion and git services commented on KARAF-6100:


Commit de8a1dc3ec65c48bd37ccf38dd55d55da0d5457f in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=de8a1dc ]

Merge pull request #727 from jbonofre/KARAF-6100

[KARAF-6100] Align narayana version with the one in pax* projects

> Align narayana version with pax-* projects
> --
>
> Key: KARAF-6100
> URL: https://issues.apache.org/jira/browse/KARAF-6100
> Project: Karaf
>  Issue Type: Task
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>
> As discussed with Grzegorz Grzybek, it makes sense to align narayana with 
> pax* projects, so 5.8.2.Final for Karaf 4.2.3.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Resolved] (KARAF-5086) Java 8 default methods cause IncompatibleClassChangeError in blueprint

2019-01-17 Thread JIRA


 [ 
https://issues.apache.org/jira/browse/KARAF-5086?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré resolved KARAF-5086.
-
   Resolution: Fixed
Fix Version/s: 4.2.3

> Java 8 default methods cause IncompatibleClassChangeError in blueprint
> --
>
> Key: KARAF-5086
> URL: https://issues.apache.org/jira/browse/KARAF-5086
> Project: Karaf
>  Issue Type: Bug
>Affects Versions: 4.0.7
>Reporter: Michael Vorburger
>Assignee: Jean-Baptiste Onofré
>Priority: Critical
> Fix For: 4.2.3
>
> Attachments: karaf.log
>
>
> I have an interface with a default method and an implementation of that is 
> exposed as an OSGi service via Aries Blueprint, and when the default method 
> is called, it's causing this error: {code}IncompatibleClassChangeError: Found 
> interface org.opendaylight.infrautils.caches.CacheProvider, but class was 
> expected. at Proxy*.newCache(){code} 
> The code looks something like this:
> {code}public interface CacheProvider {
>  Cache newCache(CacheConfig cacheConfig, CachePolicy 
> initialPolicy);
> default  Cache newCache(CacheConfig cacheConfig) {
> return newCache(cacheConfig, new CachePolicyBuilder().build());
> }
> {code}
> And here's the full stack trace:
> {code}opendaylight-user@root>diag
> caches-sample (57)
> --
> Status: Failure
> Blueprint
> 9/4/17 5:35 AM
> Exception: 
> org.osgi.service.blueprint.container.ComponentDefinitionException: Error when 
> instantiating bean sampleServiceWithCachingImpl of class 
> org.opendaylight.infrautils.caches.sample.SampleServiceWithCachingImpl
> org.osgi.service.blueprint.container.ComponentDefinitionException: 
> org.osgi.service.blueprint.container.ComponentDefinitionException: Error when 
> instantiating bean sampleServiceWithCachingImpl of class 
> org.opendaylight.infrautils.caches.sample.SampleServiceWithCachingImpl
>   at 
> org.apache.aries.blueprint.container.ServiceRecipe.createService(ServiceRecipe.java:310)
>   at 
> org.apache.aries.blueprint.container.ServiceRecipe.internalGetService(ServiceRecipe.java:252)
>   at 
> org.apache.aries.blueprint.container.ServiceRecipe.internalCreate(ServiceRecipe.java:149)
>   at 
> org.apache.aries.blueprint.di.AbstractRecipe$1.call(AbstractRecipe.java:79)
>   at java.util.concurrent.FutureTask.run(FutureTask.java:266)
>   at 
> org.apache.aries.blueprint.di.AbstractRecipe.create(AbstractRecipe.java:88)
>   at 
> org.apache.aries.blueprint.container.BlueprintRepository.createInstances(BlueprintRepository.java:255)
>   at 
> org.apache.aries.blueprint.container.BlueprintRepository.createAll(BlueprintRepository.java:186)
>   at 
> org.apache.aries.blueprint.container.BlueprintContainerImpl.instantiateEagerComponents(BlueprintContainerImpl.java:724)
>   at 
> org.apache.aries.blueprint.container.BlueprintContainerImpl.doRun(BlueprintContainerImpl.java:411)
>   at 
> org.apache.aries.blueprint.container.BlueprintContainerImpl.run(BlueprintContainerImpl.java:276)
>   at 
> org.apache.aries.blueprint.container.BlueprintExtender.createContainer(BlueprintExtender.java:300)
>   at 
> org.apache.aries.blueprint.container.BlueprintExtender.createContainer(BlueprintExtender.java:269)
>   at 
> org.apache.aries.blueprint.container.BlueprintExtender.createContainer(BlueprintExtender.java:265)
>   at 
> org.apache.aries.blueprint.container.BlueprintExtender.modifiedBundle(BlueprintExtender.java:255)
>   at 
> org.apache.aries.util.tracker.hook.BundleHookBundleTracker$Tracked.customizerModified(BundleHookBundleTracker.java:500)
>   at 
> org.apache.aries.util.tracker.hook.BundleHookBundleTracker$Tracked.customizerModified(BundleHookBundleTracker.java:433)
>   at 
> org.apache.aries.util.tracker.hook.BundleHookBundleTracker$AbstractTracked.track(BundleHookBundleTracker.java:725)
>   at 
> org.apache.aries.util.tracker.hook.BundleHookBundleTracker$Tracked.bundleChanged(BundleHookBundleTracker.java:463)
>   at 
> org.apache.aries.util.tracker.hook.BundleHookBundleTracker$BundleEventHook.event(BundleHookBundleTracker.java:422)
>   at 
> org.eclipse.osgi.internal.framework.EquinoxEventPublisher$2.call(EquinoxEventPublisher.java:189)
>   at 
> org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.notifyHookPrivileged(ServiceRegistry.java:1280)
>   at 
> org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.notifyHooksPrivileged(ServiceRegistry.java:1263)
>   at 
> org.eclipse.osgi.internal.framework.EquinoxEventPublisher.notifyEventHooksPrivileged(EquinoxEventPublisher.java:186)
>   at 
> org.eclipse.osgi.internal.framework.EquinoxEventPublisher.publishBundleEventPrivileged(EquinoxEventPublisher.java:146)
>   

[jira] [Commented] (KARAF-6087) Upgrade to Aries Proxy Impl 1.1.4

2019-01-17 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6087?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745475#comment-16745475
 ] 

ASF subversion and git services commented on KARAF-6087:


Commit 62dcf082d91805480f5325d295969c425aaf8b94 in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=62dcf08 ]

Merge pull request #726 from jbonofre/KARAF-6087

[KARAF-6087] Upgrade to Aries Proxy Impl 1.1.4

> Upgrade to Aries Proxy Impl 1.1.4
> -
>
> Key: KARAF-6087
> URL: https://issues.apache.org/jira/browse/KARAF-6087
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
>  Labels: blueprint
> Fix For: 4.2.3
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Resolved] (KARAF-6087) Upgrade to Aries Proxy Impl 1.1.4

2019-01-17 Thread JIRA


 [ 
https://issues.apache.org/jira/browse/KARAF-6087?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré resolved KARAF-6087.
-
Resolution: Fixed

> Upgrade to Aries Proxy Impl 1.1.4
> -
>
> Key: KARAF-6087
> URL: https://issues.apache.org/jira/browse/KARAF-6087
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
>  Labels: blueprint
> Fix For: 4.2.3
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6087) Upgrade to Aries Proxy Impl 1.1.4

2019-01-17 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6087?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745473#comment-16745473
 ] 

ASF subversion and git services commented on KARAF-6087:


Commit 41c16a4b7d51b38198d97d1fd21a341cf96ea3b1 in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=41c16a4 ]

[KARAF-6087] Upgrade to Aries Proxy Impl 1.1.4


> Upgrade to Aries Proxy Impl 1.1.4
> -
>
> Key: KARAF-6087
> URL: https://issues.apache.org/jira/browse/KARAF-6087
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
>  Labels: blueprint
> Fix For: 4.2.3
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6087) Upgrade to Aries Proxy Impl 1.1.4

2019-01-17 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6087?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745472#comment-16745472
 ] 

ASF GitHub Bot commented on KARAF-6087:
---

jbonofre commented on pull request #726: [KARAF-6087] Upgrade to Aries Proxy 
Impl 1.1.4
URL: https://github.com/apache/karaf/pull/726
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Upgrade to Aries Proxy Impl 1.1.4
> -
>
> Key: KARAF-6087
> URL: https://issues.apache.org/jira/browse/KARAF-6087
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
>  Labels: blueprint
> Fix For: 4.2.3
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6087) Upgrade to Aries Proxy Impl 1.1.4

2019-01-17 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6087?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745474#comment-16745474
 ] 

ASF subversion and git services commented on KARAF-6087:


Commit 62dcf082d91805480f5325d295969c425aaf8b94 in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=62dcf08 ]

Merge pull request #726 from jbonofre/KARAF-6087

[KARAF-6087] Upgrade to Aries Proxy Impl 1.1.4

> Upgrade to Aries Proxy Impl 1.1.4
> -
>
> Key: KARAF-6087
> URL: https://issues.apache.org/jira/browse/KARAF-6087
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
>  Labels: blueprint
> Fix For: 4.2.3
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (KARAF-6102) Align some minor dependencies with pax-* projects

2019-01-17 Thread Grzegorz Grzybek (JIRA)
Grzegorz Grzybek created KARAF-6102:
---

 Summary: Align some minor dependencies with pax-* projects
 Key: KARAF-6102
 URL: https://issues.apache.org/jira/browse/KARAF-6102
 Project: Karaf
  Issue Type: Dependency upgrade
Reporter: Grzegorz Grzybek
Assignee: Grzegorz Grzybek
 Fix For: 4.2.3


These include:
* commons-codec 1.11
* SMX spec 2.9.0
* mvn:javax.jms/javax.jms-api/2.0 → mvn:javax.jms/javax.jms-api/2.0.1
* mvn:org.apache.commons/commons-pool2/2.4.2 → 
mvn:org.apache.commons/commons-pool2/2.5.0



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (KARAF-6101) Release train: pax-cdi 1.1.0, pax-jms 1.0.3, pax-jdbc 1.3.2, pax-transx 0.4.2, pax-web 7.2.7

2019-01-17 Thread Grzegorz Grzybek (JIRA)
Grzegorz Grzybek created KARAF-6101:
---

 Summary: Release train: pax-cdi 1.1.0, pax-jms 1.0.3, pax-jdbc 
1.3.2, pax-transx 0.4.2, pax-web 7.2.7
 Key: KARAF-6101
 URL: https://issues.apache.org/jira/browse/KARAF-6101
 Project: Karaf
  Issue Type: Dependency upgrade
Reporter: Grzegorz Grzybek
Assignee: Grzegorz Grzybek


Following [dependency upgrade 
thread|http://karaf.922171.n3.nabble.com/HEADS-UP-Releases-schedule-td4054865.html],
 I want to upgrade to:
* pax-cdi 1.1.0
* pax-transx 0.4.2
* pax-jms 1.0.3
* pax-jdbc 1.3.2
* pax-web 7.2.7

All the above versions are aligned wrt pax-url, narayana, commons-codec and few 
other dependencies.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6100) Align narayana version with pax-* projects

2019-01-17 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6100?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745171#comment-16745171
 ] 

ASF GitHub Bot commented on KARAF-6100:
---

jbonofre commented on pull request #727: [KARAF-6100] Align narayana version 
with the one in pax* projects
URL: https://github.com/apache/karaf/pull/727
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Align narayana version with pax-* projects
> --
>
> Key: KARAF-6100
> URL: https://issues.apache.org/jira/browse/KARAF-6100
> Project: Karaf
>  Issue Type: Task
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>
> As discussed with Grzegorz Grzybek, it makes sense to align narayana with 
> pax* projects, so 5.8.2.Final for Karaf 4.2.3.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (KARAF-6101) Release train: pax-cdi 1.1.0, pax-jms 1.0.3, pax-jdbc 1.3.2, pax-transx 0.4.2, pax-web 7.2.7

2019-01-17 Thread Grzegorz Grzybek (JIRA)


 [ 
https://issues.apache.org/jira/browse/KARAF-6101?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Grzegorz Grzybek updated KARAF-6101:

Fix Version/s: 4.2.3

> Release train: pax-cdi 1.1.0, pax-jms 1.0.3, pax-jdbc 1.3.2, pax-transx 
> 0.4.2, pax-web 7.2.7
> 
>
> Key: KARAF-6101
> URL: https://issues.apache.org/jira/browse/KARAF-6101
> Project: Karaf
>  Issue Type: Dependency upgrade
>Reporter: Grzegorz Grzybek
>Assignee: Grzegorz Grzybek
>Priority: Major
> Fix For: 4.2.3
>
>
> Following [dependency upgrade 
> thread|http://karaf.922171.n3.nabble.com/HEADS-UP-Releases-schedule-td4054865.html],
>  I want to upgrade to:
> * pax-cdi 1.1.0
> * pax-transx 0.4.2
> * pax-jms 1.0.3
> * pax-jdbc 1.3.2
> * pax-web 7.2.7
> All the above versions are aligned wrt pax-url, narayana, commons-codec and 
> few other dependencies.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (KARAF-6096) Upgrade to Felix Gogo 1.1.3

2019-01-17 Thread JIRA


 [ 
https://issues.apache.org/jira/browse/KARAF-6096?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré updated KARAF-6096:

Summary: Upgrade to Felix Gogo 1.1.3  (was: Upgrade to Felix Gogo 1.1.2)

> Upgrade to Felix Gogo 1.1.3
> ---
>
> Key: KARAF-6096
> URL: https://issues.apache.org/jira/browse/KARAF-6096
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (KARAF-6100) Align narayana version with pax-* projects

2019-01-17 Thread JIRA
Jean-Baptiste Onofré created KARAF-6100:
---

 Summary: Align narayana version with pax-* projects
 Key: KARAF-6100
 URL: https://issues.apache.org/jira/browse/KARAF-6100
 Project: Karaf
  Issue Type: Task
  Components: karaf
Reporter: Jean-Baptiste Onofré
Assignee: Jean-Baptiste Onofré
 Fix For: 4.2.3


As discussed with Grzegorz Grzybek, it makes sense to align narayana with pax* 
projects, so 5.8.2.Final for Karaf 4.2.3.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6087) Upgrade to Aries Proxy Impl 1.1.4

2019-01-17 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6087?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745144#comment-16745144
 ] 

ASF GitHub Bot commented on KARAF-6087:
---

jbonofre commented on pull request #726: [KARAF-6087] Upgrade to Aries Proxy 
Impl 1.1.4
URL: https://github.com/apache/karaf/pull/726
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Upgrade to Aries Proxy Impl 1.1.4
> -
>
> Key: KARAF-6087
> URL: https://issues.apache.org/jira/browse/KARAF-6087
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
>  Labels: blueprint
> Fix For: 4.2.3
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Resolved] (KARAF-6095) Upgrade to Aries JPA 2.7.1

2019-01-17 Thread JIRA


 [ 
https://issues.apache.org/jira/browse/KARAF-6095?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré resolved KARAF-6095.
-
Resolution: Fixed

> Upgrade to Aries JPA 2.7.1
> --
>
> Key: KARAF-6095
> URL: https://issues.apache.org/jira/browse/KARAF-6095
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6095) Upgrade to Aries JPA 2.7.1

2019-01-17 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6095?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745097#comment-16745097
 ] 

ASF GitHub Bot commented on KARAF-6095:
---

jbonofre commented on pull request #721: [KARAF-6095] Upgrade to Aries JPA 2.7.1
URL: https://github.com/apache/karaf/pull/721
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Upgrade to Aries JPA 2.7.1
> --
>
> Key: KARAF-6095
> URL: https://issues.apache.org/jira/browse/KARAF-6095
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6099) Upgrade to Narayana 5.9.2.Final

2019-01-17 Thread Grzegorz Grzybek (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6099?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16745077#comment-16745077
 ] 

Grzegorz Grzybek commented on KARAF-6099:
-

Ah - I didn't check Karaf and just relesed pax-jms/pax-jdbc/pax-transx use 
Narayana 5.8.2.Final ... But I think it should not be a problem. I'll align 
next time.

> Upgrade to Narayana 5.9.2.Final
> ---
>
> Key: KARAF-6099
> URL: https://issues.apache.org/jira/browse/KARAF-6099
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6099) Upgrade to Narayana 5.9.2.Final

2019-01-17 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6099?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16744833#comment-16744833
 ] 

ASF subversion and git services commented on KARAF-6099:


Commit 1df451f34e7ce9da91aa8ef57945734c601ca743 in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=1df451f ]

Merge pull request #725 from jbonofre/KARAF-6099

[KARAF-6099] Upgrade to Narayana 5.9.2.Final

> Upgrade to Narayana 5.9.2.Final
> ---
>
> Key: KARAF-6099
> URL: https://issues.apache.org/jira/browse/KARAF-6099
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6099) Upgrade to Narayana 5.9.2.Final

2019-01-17 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6099?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16744831#comment-16744831
 ] 

ASF subversion and git services commented on KARAF-6099:


Commit 34ad84f9cd42329b24fb3f736f3879fce9a01cbd in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=34ad84f ]

[KARAF-6099] Upgrade to Narayana 5.9.2.Final


> Upgrade to Narayana 5.9.2.Final
> ---
>
> Key: KARAF-6099
> URL: https://issues.apache.org/jira/browse/KARAF-6099
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6099) Upgrade to Narayana 5.9.2.Final

2019-01-17 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6099?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16744830#comment-16744830
 ] 

ASF GitHub Bot commented on KARAF-6099:
---

jbonofre commented on pull request #725: [KARAF-6099] Upgrade to Narayana 
5.9.2.Final
URL: https://github.com/apache/karaf/pull/725
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Upgrade to Narayana 5.9.2.Final
> ---
>
> Key: KARAF-6099
> URL: https://issues.apache.org/jira/browse/KARAF-6099
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6099) Upgrade to Narayana 5.9.2.Final

2019-01-17 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6099?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16744832#comment-16744832
 ] 

ASF subversion and git services commented on KARAF-6099:


Commit 1df451f34e7ce9da91aa8ef57945734c601ca743 in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=1df451f ]

Merge pull request #725 from jbonofre/KARAF-6099

[KARAF-6099] Upgrade to Narayana 5.9.2.Final

> Upgrade to Narayana 5.9.2.Final
> ---
>
> Key: KARAF-6099
> URL: https://issues.apache.org/jira/browse/KARAF-6099
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Resolved] (KARAF-6099) Upgrade to Narayana 5.9.2.Final

2019-01-17 Thread JIRA


 [ 
https://issues.apache.org/jira/browse/KARAF-6099?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré resolved KARAF-6099.
-
Resolution: Fixed

> Upgrade to Narayana 5.9.2.Final
> ---
>
> Key: KARAF-6099
> URL: https://issues.apache.org/jira/browse/KARAF-6099
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.2.3
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KARAF-6088) Upgrade to pax-web 7.2.7

2019-01-17 Thread Grzegorz Grzybek (JIRA)


[ 
https://issues.apache.org/jira/browse/KARAF-6088?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16744775#comment-16744775
 ] 

Grzegorz Grzybek commented on KARAF-6088:
-

Also I'll create JIRAs for:
* pax-transx 0.4.2
* pax-jdbc 1.3.2
* pax-jms 1.0.3
* pax-cdi 1.1.0

> Upgrade to pax-web 7.2.7
> 
>
> Key: KARAF-6088
> URL: https://issues.apache.org/jira/browse/KARAF-6088
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Grzegorz Grzybek
>Assignee: Grzegorz Grzybek
>Priority: Major
>  Labels: webcontainer
> Fix For: 4.2.3
>
>
> This upgrade is related to pax-url 2.6.1



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (KARAF-6088) Upgrade to pax-web 7.2.7

2019-01-17 Thread Grzegorz Grzybek (JIRA)


 [ 
https://issues.apache.org/jira/browse/KARAF-6088?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Grzegorz Grzybek updated KARAF-6088:

Summary: Upgrade to pax-web 7.2.7  (was: Upgrade to pax-web 7.2.6)

> Upgrade to pax-web 7.2.7
> 
>
> Key: KARAF-6088
> URL: https://issues.apache.org/jira/browse/KARAF-6088
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Grzegorz Grzybek
>Assignee: Grzegorz Grzybek
>Priority: Major
>  Labels: webcontainer
> Fix For: 4.2.3
>
>
> This upgrade is related to pax-url 2.6.1



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)