Guest User

Untitled

a guest
Oct 11th, 2017
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 7.21 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0                           http://maven.apache.org/xsd/settings-1.0.0.xsd">
  3.       <localRepository/>
  4.       <interactiveMode/>
  5.       <usePluginRegistry/>
  6.       <offline/>
  7.       <pluginGroups/>
  8.       <servers>
  9.         <server>
  10.       <id>nexus</id>
  11.       <username>deployment</username>
  12.       <password>deployment123</password>
  13.     </server>
  14.        </servers>
  15.       <mirrors/>
  16.       <proxies/>
  17.         <profiles>
  18.         <profile>
  19.             <id>sonar</id>
  20.             <activation>
  21.                 <activeByDefault>true</activeByDefault>
  22.             </activation>
  23.             <properties>
  24.                 <!-- Example for MySQL-->
  25.                 <sonar.jdbc.url>
  26.                   jdbc:oracle:thin:@172.16.137.128:1521:xe
  27.                   <!--mysql://localhost:3306/sonar?useUnicode=true&amp;characterEncoding=utf8 -->
  28.                 </sonar.jdbc.url>
  29.                 <sonar.jdbc.username>sonar</sonar.jdbc.username>
  30.                 <sonar.jdbc.password>sonar</sonar.jdbc.password>
  31.  
  32.                 <!-- Optional URL to server. Default value is http://localhost:9000 -->
  33.                 <sonar.host.url>
  34.                   http://localhost:9000
  35.                 </sonar.host.url>
  36.             </properties>
  37.         </profile>
  38.           <profile>
  39.             <id>atlassian</id>
  40.             <activation>
  41.                 <activeByDefault>true</activeByDefault>
  42.             </activation>
  43.             <pluginRepositories>
  44.  
  45. <pluginRepository>
  46.     <id>atlassian-plugin-sdk</id>
  47.     <url>file:///Applications/Atlassian/atlassian-plugin-sdk-6.2.14/repository</url>
  48.      <releases>
  49.         <enabled>true</enabled>
  50.         <checksumPolicy>warn</checksumPolicy>
  51.       </releases>
  52.       <snapshots>
  53.          <enabled>false</enabled>
  54.       </snapshots>
  55.  </pluginRepository>
  56.             </pluginRepositories>
  57.            
  58.         </profile>
  59.      <profile>
  60.       <id>atlassian-maven</id>
  61.       <repositories>
  62.         <repository>
  63.           <id>atlassian-public</id>
  64.           <name>atlassian-public</name>
  65.           <url>https://maven.atlassian.com/repository/public</url>
  66.           <snapshots>
  67.             <enabled>true</enabled>
  68.             <updatePolicy>never</updatePolicy>
  69.           </snapshots>
  70.         </repository>
  71.       </repositories>
  72.       <pluginRepositories>
  73.         <pluginRepository>
  74.           <id>atlassian-public</id>
  75.           <name>atlassian-public</name>
  76.           <url>https://maven.atlassian.com/repository/public</url>
  77.           <snapshots>
  78.             <enabled>true</enabled>
  79.             <updatePolicy>never</updatePolicy>
  80.           </snapshots>
  81.         </pluginRepository>
  82.       </pluginRepositories>
  83.     </profile>
  84.      <profile>
  85.       <id>redhat-ga</id>
  86.       <repositories>
  87.         <repository>
  88.           <id>redhat-public</id>
  89.           <name>readhat-public</name>
  90.           <url>https://maven.repository.redhat.com/ga/</url>
  91.           <snapshots>
  92.             <enabled>true</enabled>
  93.             <updatePolicy>never</updatePolicy>
  94.           </snapshots>
  95.         </repository>
  96.       </repositories>
  97.       <pluginRepositories>
  98.         <pluginRepository>
  99.           <id>redhat-public</id>
  100.           <name>redhat-public</name>
  101.           <url>https://maven.repository.redhat.com/ga/</url>
  102.           <snapshots>
  103.             <enabled>true</enabled>
  104.             <updatePolicy>never</updatePolicy>
  105.           </snapshots>
  106.         </pluginRepository>
  107.       </pluginRepositories>
  108.     </profile>
  109.       <profile>
  110.       <id>jboss-public</id>
  111.       <repositories>
  112.         <repository>
  113.           <id>jboss-public</id>
  114.           <name>jboss-public</name>
  115.           <url>https://repository.jboss.org/nexus/content/groups/product-ga/</url>
  116.           <snapshots>
  117.             <enabled>true</enabled>
  118.             <updatePolicy>never</updatePolicy>
  119.           </snapshots>
  120.         </repository>
  121.       </repositories>
  122.       <pluginRepositories>
  123.         <pluginRepository>
  124.           <id>jboss-public</id>
  125.           <name>jboss-public</name>
  126.           <url>https://repository.jboss.org/nexus/content/groups/product-ga/</url>
  127.           <snapshots>
  128.             <enabled>true</enabled>
  129.             <updatePolicy>never</updatePolicy>
  130.           </snapshots>
  131.         </pluginRepository>
  132.       </pluginRepositories>
  133.     </profile>
  134.  
  135.  
  136.       <profile>
  137.       <id>jboss-techpreview-ga</id>
  138.       <repositories>
  139.         <repository>
  140.           <id>jboss-techpreview-ga</id>
  141.           <name>jboss-techpreview-ga</name>
  142.           <url>http://maven.repository.redhat.com/techpreview/all</url>
  143.           <snapshots>
  144.             <enabled>true</enabled>
  145.             <updatePolicy>never</updatePolicy>
  146.           </snapshots>
  147.         </repository>
  148.       </repositories>
  149.       <pluginRepositories>
  150.         <pluginRepository>
  151.           <id>jboss-techpreview-ga</id>
  152.           <name>jboss-techpreview-ga</name>
  153.           <url>http://maven.repository.redhat.com/techpreview/all</url>
  154.           <snapshots>
  155.             <enabled>true</enabled>
  156.             <updatePolicy>never</updatePolicy>
  157.           </snapshots>
  158.         </pluginRepository>
  159.       </pluginRepositories>
  160.     </profile>
  161.  
  162.     <profile>
  163.      <id>jboss-earlyaccess</id>
  164.       <repositories>
  165.         <repository>
  166.  <id>jboss-earlyaccess-repository</id>
  167.           <url>http://maven.repository.redhat.com/earlyaccess/all/</url>
  168.           <releases/>
  169.           <snapshots>
  170.             <enabled>false</enabled>
  171.           </snapshots>
  172.          
  173.         </repository>
  174.       </repositories>
  175.       <pluginRepositories>
  176.         <pluginRepository>
  177.           <releases/>
  178.           <snapshots>
  179.             <enabled>false</enabled>
  180.           </snapshots>
  181.           <id>jboss-earlyaccess-plugin-repository</id>
  182.           <url>http://maven.repository.redhat.com/earlyaccess/all/</url>
  183.         </pluginRepository>
  184.       </pluginRepositories>
  185.     </profile>
  186.  
  187.     <profile>
  188.      <id>fusesource</id>
  189. <activation>
  190.         <activeByDefault>true</activeByDefault>
  191.       </activation>
  192.       <repositories>
  193.         <repository>
  194.  <id>fusesource-repository</id>
  195.           <url>http://repo.fusesource.com/nexus/content/groups/public/</url>
  196.           <releases/>
  197.           <snapshots>
  198.             <enabled>false</enabled>
  199.           </snapshots>
  200.          
  201.         </repository>
  202.       </repositories>
  203.       <pluginRepositories>
  204.         <pluginRepository>
  205.           <releases/>
  206.           <snapshots>
  207.             <enabled>false</enabled>
  208.           </snapshots>
  209.           <id>fusesource-plugin-repository</id>
  210.           <url>http://repo.fusesource.com/nexus/content/groups/public/</url>
  211.         </pluginRepository>
  212.       </pluginRepositories>
  213.     </profile>
  214.  
  215.   </profiles>
  216.       <activeProfiles>
  217.    <!-- <activeProfile>atlassian-maven</activeProfile> -->
  218.      <activeProfile>redhat-ga</activeProfile>
  219.      <activeProfile>jboss-public</activeProfile>
  220.      <activeProfile>jboss-techpreview-ga</activeProfile>
  221.       <activeProfile>jboss-earlyaccess</activeProfile>
  222.        <activeProfile>fusesource</activeProfile>
  223.   </activeProfiles>
  224.     </settings>
Add Comment
Please, Sign In to add comment