Created
April 5, 2016 14:42
-
-
Save jeanatcismet/869f457f4e789aaa3975ad4ccc1d7bd8 to your computer and use it in GitHub Desktop.
CidsRef container-data
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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<parent> | |
<groupId>de.cismet</groupId> | |
<artifactId>global-parent</artifactId> | |
<version>2.0</version> | |
</parent> | |
<groupId>de.cismet.cids</groupId> | |
<artifactId>cids-server-reference</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<packaging>pom</packaging> | |
<name>Cids-Server reference Distribution</name> | |
<description>Generates a cids distribution</description> | |
<dependencies> | |
<dependency> | |
<groupId>de.cismet.cids</groupId> | |
<artifactId>cids-server</artifactId> | |
<version>2.0-SNAPSHOT</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>de.cismet.cids</groupId> | |
<artifactId>cids-maven-plugin</artifactId> | |
<version>2.1</version> | |
<executions> | |
<execution> | |
<goals> | |
<goal>generate-lib</goal> | |
</goals> | |
</execution> | |
</executions> | |
<configuration> | |
<vendor>cismet</vendor> | |
<homepage>http://www.cismet.de</homepage> | |
<codebase>http://</codebase> | |
<m2codebase>lib/m2</m2codebase> | |
<accountExtension>CidsRef</accountExtension> | |
<outputDirectory>..</outputDirectory> | |
<dependencyConfiguration> | |
<dependencyEx> | |
<groupId>de.cismet.cids</groupId> | |
<artifactId>cids-server</artifactId> | |
<generateJnlp>false</generateJnlp> | |
<starterConfiguration> | |
<localConfiguration> | |
<jarNames> | |
<jarName>res.jar</jarName> | |
</jarNames> | |
</localConfiguration> | |
<mainClass>Sirius.server.middleware.impls.domainserver.DomainServerImpl</mainClass> | |
</starterConfiguration> | |
</dependencyEx> | |
</dependencyConfiguration> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
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
##ServerConsole Properties | |
serverTitle=cids Domainserver (CIDS_REF) | |
serverClass=Sirius.server.middleware.impls.domainserver.DomainServerImpl | |
log4jConfig=runtime.properties | |
runtimeArgs=runtime.properties | |
log4j_prop_file=runtime.properties | |
## server.config | |
serverName=CIDS_REF | |
startMode=simple | |
serverPort=8887 | |
registryIPs=localhost | |
rmiRegistryPort=1099 | |
## server's rest settings | |
# ATTENTION: if enable is not set to true the server will always disable rest by default | |
server.rest.enable=true | |
# ATTENTION: debug mode disables ssl and shall never be used in production use! | |
server.rest.debug=true | |
server.rest.port=9986 | |
## db connection properties | |
connection.driver_class=org.postgresql.Driver | |
connection.url=jdbc:postgresql://__DB_HOST__:__DB_PORT__/cids_reference | |
connection.username=postgres | |
connection.password=postgres | |
connection.pool_size=5 | |
dialect=org.hibernate.dialect.PostgreSQLDialect | |
quotedTypes=1;3;45;47;71;25;29;78;79;80;81;82;180;269 | |
## resource config | |
iconDirectory=./icons | |
defaultIconDirectory=./icons | |
queryStoreDirectory=./querystore | |
fileSeparator=/ | |
## policies | |
serverPolicy=STANDARD | |
attributePolicy=STANDARD | |
classNodePolicy=STANDARD | |
pureNodePolicy=STANDARD | |
##log4jproperties | |
log4j.rootLogger=WARN, HTML | |
log4j.appender.HTML=org.apache.log4j.RollingFileAppender | |
log4j.appender.HTML.file=./switchon_for-rest_log.html | |
log4j.appender.HTML.MaxFileSize=10MB | |
log4j.appender.HTML.MaxBackupIndex=1 | |
log4j.appender.HTML.layout=org.apache.log4j.HTMLLayout |
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
<?xml version="1.0"?> | |
<settings> | |
<localRepository>lib/m2</localRepository> | |
<profiles> | |
<profile> | |
<id>global-properties</id> | |
<activation> | |
<activeByDefault>true</activeByDefault> | |
</activation> | |
</profile> | |
<profile> | |
<activation> | |
<activeByDefault>true</activeByDefault> | |
</activation> | |
<id>dev</id> | |
<repositories> | |
<repository> | |
<id>eig-cismet-repo</id> | |
<url>http://repo.cismet.de/repo</url> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
<snapshots> | |
<enabled>true</enabled> | |
</snapshots> | |
</repository> | |
<repository> | |
<id>cismet-repo</id> | |
<url>http://repo.cismet.de/repo</url> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
<snapshots> | |
<enabled>true</enabled> | |
</snapshots> | |
</repository> | |
<repository> | |
<id>cismet-dev</id> | |
<url>http://repo.cismet.de/repo</url> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
<snapshots> | |
<enabled>true</enabled> | |
</snapshots> | |
</repository> | |
</repositories> | |
<pluginRepositories> | |
<pluginRepository> | |
<id>eig-cismet-repo</id> | |
<url>http://repo.cismet.de/repo</url> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
<snapshots> | |
<enabled>true</enabled> | |
</snapshots> | |
</pluginRepository> | |
</pluginRepositories> | |
</profile> | |
</profiles> | |
<mirrors> | |
<mirror> | |
<id>central-proxy</id> | |
<name>cismet-repo</name> | |
<url>https://repo.cismet.de/repo</url> | |
<mirrorOf>central</mirrorOf> | |
</mirror> | |
</mirrors> | |
<servers> | |
<server> | |
<id>cismet-dev</id> | |
<username>YOUR_USERNAME</username> | |
<password>YOUR_CRYPTED_PASSWORD</password> | |
</server> | |
<server> | |
<id>eig-cismet-repo</id> | |
<username>YOUR_USERNAME</username> | |
<password>YOUR_CRYPTED_PASSWORD</password> | |
</server> | |
<server> | |
<id>cismet-repo</id> | |
<username>YOUR_USERNAME</username> | |
<password>YOUR_CRYPTED_PASSWORD</password> | |
</server> | |
<server> | |
<id>central</id> | |
<username>YOUR_USERNAME</username> | |
<password>YOUR_CRYPTED_PASSWORD</password> | |
</server> | |
<server> | |
<id>central-proxy</id> | |
<username>YOUR_USERNAME</username> | |
<password>YOUR_CRYPTED_PASSWORD</password> | |
</server> | |
</servers> | |
</settings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment