This script build a Python script (.py
) to Windows executable (.exe
).
The output executable can be run:
- regardless Windows versions,
- without Python installation,
- without module installation.
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"} | |
*/ |
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/
heroku login
heroku pg:killall --app $APP
(my APP is jsfring-webapp-jsf
)#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import argparse | |
import os | |
import signal | |
import subprocess | |
import urllib2 | |
parser = argparse.ArgumentParser() |