diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-01-30 14:01:38 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-01-30 14:01:38 +0100 |
commit | 97d1aafc328e6a7e7692cb75f2f85a46594a1aa7 (patch) | |
tree | 3b4877e78970b47e6ec3ab6e785fb908ad93359b /pom.xml | |
parent | 973e2b6a75f57043ad47f66430aef2f0ab8c3e64 (diff) | |
download | sonarqube-97d1aafc328e6a7e7692cb75f2f85a46594a1aa7.tar.gz sonarqube-97d1aafc328e6a7e7692cb75f2f85a46594a1aa7.zip |
Upgrade to parent 27
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 95 |
1 files changed, 1 insertions, 94 deletions
@@ -5,7 +5,7 @@ <parent> <groupId>org.sonarsource.parent</groupId> <artifactId>parent</artifactId> - <version>26</version> + <version>27</version> </parent> <groupId>org.sonarsource.sonarqube</groupId> <artifactId>sonarqube</artifactId> @@ -1494,99 +1494,6 @@ <module>it</module> </modules> </profile> - - <profile> - <id>deploy-sonarsource</id> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-enforcer-plugin</artifactId> - <executions> - <execution> - <id>enforce-deploy-settings</id> - <goals> - <goal>enforce</goal> - </goals> - <configuration> - <rules> - <requireProperty> - <property>gitRepositoryName</property> - <message>You must set name of Git repository in your pom</message> - </requireProperty> - <requireEnvironmentVariable> - <variableName>ARTIFACTORY_URL</variableName> - </requireEnvironmentVariable> - <requireEnvironmentVariable> - <variableName>ARTIFACTORY_DEPLOY_REPO</variableName> - </requireEnvironmentVariable> - <requireEnvironmentVariable> - <variableName>ARTIFACTORY_DEPLOY_USERNAME</variableName> - </requireEnvironmentVariable> - <requireEnvironmentVariable> - <variableName>ARTIFACTORY_DEPLOY_PASSWORD</variableName> - </requireEnvironmentVariable> - </rules> - <fail>true</fail> - </configuration> - </execution> - </executions> - </plugin> - <plugin> - <!-- this maven plugin is not deployed in Maven Central. It should be downloaded - from JFrog JCenter or from SonarSource repositories --> - <groupId>org.jfrog.buildinfo</groupId> - <artifactId>artifactory-maven-plugin</artifactId> - <version>2.4.0</version> - <inherited>false</inherited> - <executions> - <execution> - <id>build-info</id> - <goals> - <goal>publish</goal> - </goals> - <configuration> - <artifactory> - <envVarsExcludePatterns> - *password*,*PASSWORD*,*secret*,*MAVEN_CMD_LINE_ARGS*,sun.java.command,*token*,*TOKEN*,*LOGIN*,*login* - </envVarsExcludePatterns> - <includeEnvVars>true</includeEnvVars> - <timeoutSec>60</timeoutSec> - </artifactory> - <deployProperties> - <vcs.revision>{{GIT_COMMIT|TRAVIS_COMMIT}}</vcs.revision> - <vcs.branch>{{GIT_BRANCH|TRAVIS_BRANCH}}</vcs.branch> - <build.name>${gitRepositoryName}</build.name> - <build.number>{{BUILD_ID|TRAVIS_BUILD_NUMBER}}</build.number> - </deployProperties> - <licenses> - <autoDiscover>true</autoDiscover> - <includePublishedArtifacts>false</includePublishedArtifacts> - <runChecks>true</runChecks> - <scopes>project,provided</scopes> - <violationRecipients>licences-control@sonarsource.com</violationRecipients> - </licenses> - <publisher> - <contextUrl>${env.ARTIFACTORY_URL}</contextUrl> - <repoKey>${env.ARTIFACTORY_DEPLOY_REPO}</repoKey> - <username>${env.ARTIFACTORY_DEPLOY_USERNAME}</username> - <password>${env.ARTIFACTORY_DEPLOY_PASSWORD}</password> - <publishBuildInfo>true</publishBuildInfo> - <publishArtifacts>true</publishArtifacts> - </publisher> - <buildInfo> - <buildName>${gitRepositoryName}</buildName> - <buildNumber>{{BUILD_ID|TRAVIS_BUILD_NUMBER}}</buildNumber> - <buildUrl>{{CI_BUILD_URL|BUILD_URL}}</buildUrl> - <vcsRevision>{{GIT_COMMIT|TRAVIS_COMMIT}}</vcsRevision> - </buildInfo> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> </profiles> </project> |