# changes file
*.changes
*.chg
# system image
*.image
*.img7
*.img
# Pharo Smalltalk Debug log file
PharoDebug.log
# Squeak Smalltalk Debug log file
SqueakDebug.log
# Dolphin Smalltalk source file
*.sml
# Dolphin Smalltalk error file
*.errors
# Monticello package cache
/package-cache
# playground cache
/play-cache
/play-stash
# Metacello-github cache
/github-cache
github-*.zip
mg src='/cgit.png' alt='cgit logo'/>
blob: 1d1549d9c4d11fd0792fd66926427671ce4a5ef0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
cd sonar-application/target/
if ! ls sonarqube-*/bin/sonar-application*.jar &> /dev/null; then
unzip sonarqube-*.zip
fi
cd sonarqube-*
java -jar ./lib/sonar-application*.jar -Dsonar.web.javaAdditionalOpts=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005
|