Point d'arrêt dans les méthodes de org.springframework.beans.factory.support.BeanDefinitionRegistry#registerBeanDefinition
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import argparse | |
import os | |
import signal | |
import subprocess | |
import urllib2 | |
parser = argparse.ArgumentParser() |
heroku login
- Fill email
- Fill password
heroku pg:killall --app $APP
(my APP isjsfring-webapp-jsf
)
-
UPDATE https://central.sonatype.org/register/central-portal/#managing-your-credentials
-
http://javaetmoi.com/2014/09/publier-deployer-releaser-artefact-sur-maven-central/
-
http://javaetmoi.developpez.com/tutoriels/java/publication-maven-central/
-
http://blog.xebia.fr/2011/06/22/deployer-un-artefact-sur-repo1-maven-org/
-
https://blog.oxiane.com/2016/08/31/deployer-son-artifact-sur-maven-central/
-
https://blog.10pines.com/2018/06/25/publish-artifacts-on-maven-central/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package fr.pinguet62.util; | |
/** | |
* Wrapper for hexavigesimal representation and conversions.<br /> | |
* {@code 0} = {@code "A"}<br/> | |
* {@code 25} = {@code "Z"}<br/> | |
* {@code 26} = {@code "AA"}<br/> | |
* {@code 27} = {@code "AB"}<br/> | |
* {@code 730} = {@code "ABC"} | |
*/ |