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
# TRACE-Logging wildfly security subsystem | |
/subsystem=logging/logger=org.jboss.security:add(level=TRACE) |
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
version: '3' | |
services: | |
bitbucket: | |
image: "atlassian/bitbucket-server:5.0" | |
container_name: bitbucket | |
restart: always | |
ports: | |
- "7990:7990" | |
- "7999:7999" | |
environment: |
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
# SonarQube server URL, e.g. http://localhost:9000 | |
sonar.host.url=http://sonarqube:9000 | |
# must be unique in a given SonarQube instance | |
sonar.projectKey=php-pm | |
# this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1. | |
sonar.projectName=PHP Process Manager | |
sonar.projectVersion=1.0 | |
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. |
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
before_script: | |
- export VERSION="${CI_PROJECT_NAMESPACE}_${CI_BUILD_ID}_$(date "+%Y-%m-%d-%H:%M:%S")" | |
- export PROJECTROOT=`pwd` | |
- export DOCKERPROJECTROOT='/srv/example/' | |
stages: | |
- test | |
- analysis | |
unittests: |