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 org.rsoika; | |
import java.io.ByteArrayOutputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.OutputStream; | |
import java.io.OutputStreamWriter; | |
import java.io.PrintWriter; | |
import java.net.HttpURLConnection; | |
import java.net.URL; |
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
#!/bin/bash | |
# this script can be used to replace deprecated javax. package names from a | |
# Java EE8 project with the new jakarta. package names in Jakarta 9 | |
# Initial version from rsoika, 2021 | |
echo "replacing:" | |
echo " javax.annotation. -> jakarta.annotation." | |
echo " javax.ejb. -> jakarta.ejb." | |
echo " javax.enterprise. -> jakarta.enterprise." |
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
#!/bin/bash | |
############################################################################# | |
############################################################################# | |
# | |
# Cassandra Key Generator v1.0 | |
# | |
# This script can be used to generate a key pair to be used to encrypt the | |
# node-to-node communictaion within a cassandra cluster. | |
# |
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
#!/bin/bash | |
#title :gitbucket-wildfly-install.sh | |
#description :The script to install Gitbucket on Wildfly 9.x,10.x | |
#more :https://github.com/gitbucket/gitbucket/wiki/Deployment-to-JEE-and-Servlet-containers | |
#author :initial: Ralph Soika | |
#date :20161218 | |
#changes :initial script | |
#usage :/bin/bash wildfly-install.sh [INSTALLDIR] [GITBUCKET-VERSION] | |
function usage |
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
#!/bin/bash | |
#title :wildfly-install.sh | |
#description :The script to install Wildfly 8.x | |
#more :http://sukharevd.net/wildfly-8-installation.html | |
#author :initial: Dmitriy Sukharev, changes:Ralph Soika | |
#date :20141129, 20141213 | |
#changes :added arguments for installation dir and port offset | |
#usage :/bin/bash wildfly-install.sh [INSTALLDIR] [PORTOFFSET] | |
function usage |