Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Privacy
Imprint
Contact
Login methods
Sign in
Toggle navigation
Menu
Open sidebar
ARSnova
ARSnova LMS Connector
Commits
9657d92e
Commit
9657d92e
authored
Jun 02, 2014
by
Paul-Christian Volkmer
Browse files
Added JaCoCo and SonarRunner plugin
parent
c5b5b383
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
9657d92e
...
...
@@ -10,3 +10,4 @@ target/*
*/build/*
.gradle/*
/build/
*/bin
connector-service/build.gradle
View file @
9657d92e
apply
plugin:
'eclipse-wtp'
apply
plugin:
'war'
apply
plugin:
'jacoco'
apply
plugin:
'sonar-runner'
jar
{
manifest
{
...
...
@@ -36,3 +38,14 @@ dependencies {
}
test
{
systemProperties
'property'
:
'value'
}
sonarRunner
{
sonarProperties
{
property
"sonar.jacoco.reportPath"
,
"$buildDir/jacoco/test.exec"
property
"sonar.host.url"
,
project
.
hasProperty
(
'sonarServerUrl'
)
?
sonarServerUrl
:
''
property
"sonar.jdbc.url"
,
project
.
hasProperty
(
'sonarDatabaseUrl'
)
?
sonarDatabaseUrl
:
''
property
"sonar.jdbc.driverClassName"
,
project
.
hasProperty
(
'sonarDatabaseDriverClassName'
)
?
sonarDatabaseDriverClassName
:
''
property
"sonar.jdbc.username"
,
project
.
hasProperty
(
'sonarDatabaseUsername'
)
?
sonarDatabaseUsername
:
''
property
"sonar.jdbc.password"
,
project
.
hasProperty
(
'sonarDatabasePassword'
)
?
sonarDatabasePassword
:
''
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment