summaryrefslogtreecommitdiffstats
path: root/src/site/setup_go.mkd
Commit message (Collapse)AuthorAgeFilesLines
* doc: Fix link to log4j.properties on Github in setup_GOFlorian Zschocke2023-04-031-1/+1
|
* Adjust path after moving from "gitblit" to "gitblit-org" on GithubFlorian Zschocke2022-12-091-1/+1
|
* 🏃run: Use quotes around class path in scriptsFlorian Zschocke2020-04-051-1/+1
| | | | | | | | | While most systems will not need the class path passed to the JVM with the `-cp` parameter to be in quotes, apparently some exist where that will not work without the quotes, e.g. FreeBSD. So always use quotes for the class path in all scripts. Issue #1333
* For Java 9+ define the classpath instead of using a Launcher.Florian Zschocke2019-11-071-8/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The (moxie and other) Launcher do not work with Java 9 and later anymore. It used to dynamically extend the classpath, misusing an internal interface of the `URLClassLoader`. This is no longer possible since Java 9, which closed that path and does not offer any way to dynamically extend the classpath during runtime. So the choice is between providing one large Jar with everything in it, providing a Jar that has the Jars in `ext` listed explicitly in its manifest, and specifying the classpath on the command line where the `ext` directory can be added and all contained jar files will be put on the classpath. The motivation for the Launcher class was to be able to simply drop new jar files into a directory and they will be picked up at the application start, without having to specify a classpath. We opt for solution three here. This way jar files can still be dropped into the ext directory, albeit the directory needs to be added to the classpath on the command line. Unfortunately using a wildcard is not possible in the manifest file. We change the calls in the script files accordingly. This seems like a good compromise, since no one will run the application manually typing the whole commandline anyway. This also does away with the splash screen, by the way. Again, doesn't seem like a big loss, as I don't think it was ever shown for the Authority. Personally, I am not convinced that it is the best way, because I don't really think that the use case of dropping whatever jar files into the `ext` directory is a valid one that happened a lot. This does not yet fix the client programs, which still use a Launcher. Maybe for them a all-in-one Jar is a better solution. Fixes #1262 Fixes #1294
* Adopt chain-loading properties as the default setupJames Moger2014-10-271-2/+7
|
* Prepare v1.6.1 documentation updatesJames Moger2014-10-201-0/+4
|
* Remove git.streamFileThreshold settingJames Moger2014-09-301-1/+0
|
* DocumentationJames Moger2014-05-071-1/+3
|
* Update to Jetty 9, drop AJPJames Moger2014-04-111-2/+2
|
* Add GO launch parameter to specify daily, rolling log file generationJames Moger2014-02-211-2/+3
|
* Add setting to automatically redirect http requests to the https portJames Moger2013-10-271-2/+1
| | | | Change-Id: I33966b8292434c10ffd623838d09527aaebaca5f
* DocumentationJames Moger2013-10-251-8/+10
| | | | Change-Id: I717e13d1f852a4adf50b547f4769dd62da2384ce
* DocumentationJames Moger2013-07-031-0/+139