Hi!

whener ‹e do a mvn deploy, the snapshots are deployed to https://repository.apache.org/content/repositories/snapshots/org/apache/mina/mina-core/2.2.0-SNAPSHOT/

It's enough to specify this repository in your parent pom to get it found:


   <repositories>
     ...
     <repository>
       <id>apache.snapshots</id>
       <name>Apache Snapshot Repository</name>

<url>https://repository.apache.org/content/repositories/snapshots</url>
       <releases>
         <enabled>false</enabled>
       </releases>
       <snapshots>
         <enabled>true</enabled>
       </snapshots>
     </repository>
   </repositories>


On 01/04/2022 19:44, Christoph John wrote:
Just a quick question:  are the 2.2.0-SNAPSHOT builds continously being 
uploaded or do you need to trigger this manually?
Thanks

Am 1. April 2022 18:56:35 MESZ schrieb "Emmanuel Lécharny" 
<elecha...@gmail.com>:
Yu didn't cause any problem. This is just a bug, anybody could have
been
caught by this one. I didn't expect that the state would be squashed if

you apply both NEED and WANT flag, and IMHO, it's a very bad API design

from Sun.

It was painful to find because I had to go deep into the Java SSL code
to understand what was going on, narrowing the issue little by little
comparing Mina 2.1 with 2.2 behaviors. Once I get to the point where I
knew it was an issue with the ClientAuthType propagation, it's was
quite
easy to fix. Plus it was hidden by some side issues with the FtpServer
migration to MINA 2.2 (typically the clear text response to be sent
before the SSLFilter activation)

Anyway, I'm glad to have fixed it.

If you can find the bug request you are referring, that would be good
and if the correction also fixes this bug, this will just be extra
bonus !

On 01/04/2022 18:42, Jonathan Valliere wrote:
Did I cause that problem because I remember there being a bug request
becaus

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@mina.apache.org
For additional commands, e-mail: dev-h...@mina.apache.org


--
*Emmanuel Lécharny - CTO* 205 Promenade des Anglais – 06200 NICE
T. +33 (0)4 89 97 36 50
P. +33 (0)6 08 33 32 61
emmanuel.lecha...@busit.com https://www.busit.com/

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@mina.apache.org
For additional commands, e-mail: dev-h...@mina.apache.org

Reply via email to