Advertisement
gerrga

Untitled

Oct 25th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. <settings>
  2. <mirrors>
  3. <mirror>
  4. <!--This sends everything else to /public -->
  5. <id>nexus</id>
  6. <!-- <mirrorOf>*</mirrorOf> -->
  7. <url>https://nexus.mycompany.com/content/groups/public</url>
  8. <mirrorOf>*</mirrorOf>
  9. </mirror>
  10. </mirrors>
  11.  
  12. <servers>
  13. <server>
  14. <id>snapshots</id>
  15. <username>deployment</username>
  16. <password>GGj9gLaAmax90WcwJJEmPpmHFKSzg6C</password>
  17. </server>
  18. <server>
  19. <id>releases</id>
  20. <username>deployment</username>
  21. <password>GGj9gLaAmax90WcwJJEmPpmHFKSzg6C</password>
  22. </server>
  23. <server>
  24. <id>central</id>
  25. <username>deployment</username>
  26. <password>GGj9gLaAmax90WcwJJEmPpmHFKSzg6C</password>
  27. </server>
  28. <server>
  29. <id>public-jboss</id>
  30. <username>deployment</username>
  31. <password>GGj9gLaAmax90WcwJJEmPpmHFKSzg6C</password>
  32. </server>
  33. </servers>
  34.  
  35. <pluginGroups>
  36. <pluginGroup>org.sonarsource.scanner.maven</pluginGroup>
  37. </pluginGroups>
  38.  
  39. <profiles>
  40. <profile>
  41. <id>nexus</id>
  42. <properties>
  43. <jboss5-home>/usr/local/jboss-5.1.0.GA/</jboss5-home>
  44. <jboss7-home>/usr/local/jboss-as-7.1.1.Final/</jboss7-home>
  45. <jbossEAP61-home>/usr/local/jboss-eap-6.1/</jbossEAP61-home>
  46. <scm-username>jenkins</scm-username>
  47. <jiraUser></jiraUser>
  48. <jiraPassword></jiraPassword>
  49. <!-- Optional URL to server. Default value is http://localhost:9000 -->
  50. <sonar.host.url>
  51. http://sonarqube.devops.mycompany.com:9000
  52. </sonar.host.url>
  53. <sonar.binaries>target/classes</sonar.binaries>
  54. <sonar.tests>src/test/java</sonar.tests>
  55. <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
  56. <sonar.junit.reportsPath>target/surefire-reports</sonar.junit.reportsPath>
  57. <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
  58. <sonar.jacoco.reportPath>target/jacoco.exec</sonar.jacoco.reportPath>
  59. </properties>
  60. <!--Enable snapshots for the built in central repo to direct -->
  61. <!--all requests to nexus via the mirror -->
  62. <repositories>
  63. <repository>
  64. <id>snapshots</id>
  65. <url>http://snapshots</url>
  66. <releases><enabled>false</enabled></releases>
  67. <snapshots><enabled>true</enabled></snapshots>
  68. </repository>
  69. <repository>
  70. <id>releases</id>
  71. <url>http://releases</url>
  72. <releases><enabled>true</enabled></releases>
  73. <snapshots><enabled>false</enabled></snapshots>
  74. </repository>
  75. <repository>
  76. <id>central</id>
  77. <url>http://central</url>
  78. <releases><enabled>true</enabled></releases>
  79. <snapshots><enabled>false</enabled></snapshots>
  80. </repository>
  81. <repository>
  82. <id>public-jboss</id>
  83. <url>http://public-jboss</url>
  84. <releases><enabled>true</enabled></releases>
  85. <snapshots><enabled>false</enabled></snapshots>
  86. </repository>
  87. </repositories>
  88. <pluginRepositories>
  89. <pluginRepository>
  90. <id>central</id>
  91. <url>http://central</url>
  92. <releases><enabled>true</enabled></releases>
  93. <snapshots><enabled>false</enabled></snapshots>
  94. </pluginRepository>
  95. </pluginRepositories>
  96. </profile>
  97. </profiles>
  98.  
  99. <activeProfiles>
  100. <!--make the profile active all the time -->
  101. <activeProfile>nexus</activeProfile>
  102. </activeProfiles>
  103. </settings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement