diff --git a/Jenkinsfile b/Jenkinsfile index e14626c52012b89fdf1a2019f6e39e9a378a701e..d8044382231e1168ee202c7472daca95e8ddcb94 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -58,6 +58,9 @@ pipeline { stage ('Reports and Statistics') { steps { script { + withSonarQubeEnv('sonarcloud GIScience/ohsome') { + sh "mvn sonar:sonar -Dsonar.branch.name=${env.BRANCH_NAME}" + } report_basedir = "/srv/reports/${REPO_NAME}/${VERSION}_${env.BRANCH_NAME}/${env.BUILD_NUMBER}_${LATEST_COMMIT_ID}" // jacoco diff --git a/pom.xml b/pom.xml index d73cf571120e0bb415317e6b08f0185c822dceda..fb246f03c291c336b8b091c0a53e73fb56118883 100644 --- a/pom.xml +++ b/pom.xml @@ -4,14 +4,19 @@ <artifactId>oshdb-examples</artifactId> <name>OSHDB Examples</name> - <url>https://ohsome.org/</url> <version>0.2-SNAPSHOT</version> <packaging>jar</packaging> + + <scm> + <url>https://gitlab.gistools.geog.uni-heidelberg.de/giscience/big-data/ohsome/oshdb-examples</url> + <connection>scm:git:https://gitlab.gistools.geog.uni-heidelberg.de/giscience/big-data/ohsome/oshdb-examples.git</connection> + <developerConnection>scm:git:ssh://git@gitlab.gistools.geog.uni-heidelberg.de:2022/giscience/big-data/ohsome/oshdb-examples.git</developerConnection> + </scm> <parent> <groupId>org.heigit.ohsome</groupId> <artifactId>ohsome-parent</artifactId> - <version>2.8</version> + <version>2.9</version> </parent> <properties> @@ -27,25 +32,21 @@ </repositories> <dependencies> - <dependency> <groupId>org.heigit.ohsome</groupId> <artifactId>oshdb-api</artifactId> <version>${oshdb.version}</version> </dependency> - <dependency> <groupId>jfree</groupId> <artifactId>jcommon</artifactId> <version>1.0.16</version> </dependency> - <dependency> <groupId>jfree</groupId> <artifactId>jfreechart</artifactId> <version>1.0.13</version> </dependency> - </dependencies> </project>