We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1351fc commit 0ffab81Copy full SHA for 0ffab81
.travis.yml
@@ -0,0 +1,25 @@
1
+language: java
2
+jdk:
3
+ - openjdk8
4
+
5
+stages:
6
+ - tests-package-sonar
7
+ - deploy
8
9
+jobs:
10
+ include:
11
+ - stage: tests-package-sonar
12
+ addons:
13
+ sonarcloud:
14
+ organization: "thepracticaldeveloper"
15
+ script:
16
+ - mvn clean package sonar:sonar
17
+ - stage: deploy
18
+ script: echo "Deploying..."
19
+ deploy:
20
+ provider: releases
21
+ api_key: "${GITHUB_OAUTH_TOKEN}"
22
+ file: "./target/quboo-sonar-plugin.jar"
23
+ skip_cleanup: true
24
+ on:
25
+ tags: true
pom.xml
@@ -91,6 +91,7 @@
91
</dependencies>
92
93
<build>
94
+ <finalName>${project.artifactId}</finalName>
95
<plugins>
96
<plugin>
97
<groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
0 commit comments