I had the same problem. I checked the logs at my application openshift team: rhc ssh -a appname --ssh C:\PROGRA~1\Git\usr\bin\ssh.exe. replace the application name in the command above.
I had the error "Unable to process Jar entry javassist". My sleep dependency used this javassist jar. therefore, I ruled out its use.
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.2.0.Final</version>
<exclusions>
<exclusion>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
</exclusion>
</exclusions>
</dependency>
You may have the same problem. Check out the magazines to help you.
source
share