dependencies { compile project(":jdk_extensions") compile fileTree(dir: 'vendor', include: '*.jar', exclude: '*-sources.jar') } dependencies { vendor 'org.apache.logging.log4j:log4j-core:2.5' vendor 'org.apache.logging.log4j:log4j-core:2.5:sources' vendor 'org.apache.logging.log4j:log4j-slf4j-impl:2.5' vendor 'org.apache.logging.log4j:log4j-slf4j-impl:2.5:sources' vendor 'io.jsonwebtoken:jjwt:0.6.0' vendor 'io.jsonwebtoken:jjwt:0.6.0:sources' } jar { archiveName "deployment.jar" dependsOn configurations.runtime from { configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) } } manifest { attributes("Main-Class": "com.perforce.hws.deployment.ConfigureNewSystem" ) } }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#3 | 19535 | drobins | Refactor package names to hws | ||
#2 | 19020 | tjuricek |
Setup the deployment changes for multi-server configuration and JWT token setup. Note: we don't setup our installation to operate as a Helix Sync "project server" by default, so we don't run those tests at the moment. (What a project server actually will be remains to be seen, actually.) |
||
#1 | 18035 | tjuricek |
Preliminary distribution formats with first-pass post-install configuration script for Linux only. This is *manually verified* at the moment. The testing framework is TBD. This contains *preliminary* hooks for .deb and .rpm packages. Those are *completely untested* and not configured. |