Here you'll find the configurable properties of our reusable CELUM Extensions .
The general property format in the docs is:
type: some-type, required: yes/no, default: xyz
Description and more infos about the property
We generally use Semantic Versioning.
Our naming scheme for JAR files is pluginName-{version of the plugin}-{minimum celum api version}.jar
e.g. anura-2.5.1-5.13.4.jar
means that anura has version 2.5.1 and requires at least CELUM 5.13.4 to run.
If you prefer to have our plugins log to their own log file, add the following to your celum/home/appserver/log4j2.xml
:
in the <Appenders>
section:
<!-- brix log -->
<RollingFile name="brixlog" fileName="${sys:synergy.home}/appserver/log/brix.log"
filePattern="${sys:synergy.home}/appserver/log/brix.%d{yyyy-MM-dd}.log.zip">
<PatternLayout pattern="%d{yyyy:MM:dd HH:mm:ss} %C{1} %-5p %m%n"/>
<Policies>
<TimeBasedTriggeringPolicy interval="1"/>
</Policies>
<DefaultRolloverStrategy compressionLevel="5">
<Delete basePath="${sys:synergy.home}/appserver/log">
<IfFileName glob="brix.*.log.zip" />
<IfLastModified age="30d" />
</Delete>
</DefaultRolloverStrategy>
</RollingFile>
and in the <Loggers>
section:
<!-- brix log -->
<Logger name="ch.brix" level="DEBUG" additivity="false">
<AppenderRef ref="brixlog" />
</Logger>
... set the level=
to one of ERROR, INFO, DEBUG or TRACE as you desire.
syncergy.home
has been renamed to celum.home
, supposedly this should have been backwards-compatible, but apparently it's not. Therefore we'd recommend that you have both -Dsynergy.home=...
and -Dcelum.home=...
pointed to the same location in order to achieve backwards-compatibility with older releases.Starting with CELUM 6 (aka Content Hub), the notion of "releases" was introduced, which has nothing to do with the actual version. So here's a lookup table:
Version | Release |
---|---|
5.x | 5.x |
6.0.0 | 18.12 |
6.0.1 | 19.1 |
6.1.0 | 19.3 |
6.2.0 | 19.6 |
6.2.1 | 19.8 |
6.3.0 | 19.10 |
6.4.0 | 19.12 |
6.4.1 - 6.4.2 | 20.2 |
6.5.0 - 6.5.2 | 20.3 |
6.6.0 | 20.6 |
6.7.0 - 6.7.6 | 20.7 |
6.8.0 - 6.8.8 | 20.9 ESR |
6.9.0 | 21.2 |