Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.18 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0
  3.                      http://maven.apache.org/xsd/settings-1.1.0.xsd">
  4.  
  5.     <mirrors>
  6.         <mirror>
  7.             <!-- You will need to change the URL here to your corporate Maven repository which mirrors the internet. -->
  8.             <id>ep-wurth-repo-group</id>
  9.             <url>http://157.230.227.78/repository/ep-wurth-repo-group/</url>
  10.             <mirrorOf>external:*</mirrorOf>
  11.         </mirror>
  12.     </mirrors>
  13.  
  14.     <servers>
  15.         <server>
  16.             <id>ep-wurth-repo-group</id>
  17.             <username>admin</username>
  18.             <password>teobae6LmahH9Ooz</password>
  19.         </server>
  20.     </servers>
  21.  
  22.     <activeProfiles>
  23.         <activeProfile>ep-developer</activeProfile>
  24.         <activeProfile>tomcat-developer</activeProfile>
  25.         <activeProfile>mysql-dev-db</activeProfile>
  26.         <!-- <activeProfile>oracle-dev-db</activeProfile> -->
  27.         <activeProfile>with-oauth2-resource</activeProfile>
  28.         <activeProfile>activemq-dev-jms</activeProfile>
  29.         <!-- <activeProfile>allow-snapshots-from-central</activeProfile> -->
  30.     </activeProfiles>
  31.  
  32.     <profiles>
  33.         <!-- MySQL developer configuration -->
  34.         <!-- This overrides the mysql-dev-db profile in elasticpath grandparent POM -->
  35.         <profile>
  36.             <id>mysql-dev-db</id>
  37.             <properties>
  38.                 <epdb.schemaname>COMMERCEDB</epdb.schemaname>
  39.                 <epdb.username>root</epdb.username>
  40.                 <epdb.password>c5lus9tering</epdb.password>
  41.                 <epdb.reset_user>root</epdb.reset_user>
  42.                 <epdb.reset_password>c5lus9tering</epdb.reset_password>
  43.                 <ep.database.timezone>UTC</ep.database.timezone>
  44.                 <epdb.synctarget.schemaname>COMMERCEDB_TARGET</epdb.synctarget.schemaname>
  45.                 <epdb.synctarget.username>root</epdb.synctarget.username>
  46.                 <epdb.synctarget.password>c5lus9terng</epdb.synctarget.password>
  47.             </properties>
  48.         </profile>
  49.  
  50.         <!-- Oracle XE developer configuration -->
  51.         <!-- This overrides the oracle-dev-db profile in elasticpath grandparent POM -->
  52.         <profile>
  53.             <id>oracle-dev-db</id>
  54.             <properties>
  55.                 <epdb.schemaname>COMMERCEDB</epdb.schemaname>
  56.                 <epdb.databasename>XE</epdb.databasename>
  57.                 <epdb.username>${epdb.schemaname}</epdb.username>
  58.                 <epdb.password>ep</epdb.password>
  59.                 <epdb.reset_user>sys as sysdba</epdb.reset_user>
  60.                 <epdb.reset_password>YOUR_SYS_PASSWORD</epdb.reset_password>
  61.                 <epdb.default.tablespace>users</epdb.default.tablespace>
  62.                 <epdb.temporary.tablespace>temp</epdb.temporary.tablespace>
  63.                 <ep.database.timezone>UTC</ep.database.timezone>
  64.             </properties>
  65.         </profile>
  66.  
  67.         <!-- Local developer configuration -->
  68.         <!-- This overrides the ep-developer profile in elasticpath parent POM -->
  69.         <profile>
  70.             <id>ep-developer</id>
  71.             <properties>
  72.                 <ep.local.asset.path>/home/centos/epc_7_5/extensions/assets/ext-assets/src/main/assets</ep.local.asset.path>
  73.                 <ep.smtp.host>localhost</ep.smtp.host>
  74.  
  75.                 <ep.local.cache.timeout>5</ep.local.cache.timeout>
  76.                 <data.population.environment>local</data.population.environment>
  77.  
  78.                 <!-- Use these values for local performance testing -->
  79.                 <!--
  80.                 <ep.local.cache.timeout>3600</ep.local.cache.timeout>
  81.                 <data.population.environment>local-perf</data.population.environment>
  82.                 -->
  83.             </properties>
  84.         </profile>
  85.  
  86.         <profile>
  87.             <id>allow-snapshots-from-central</id>
  88.             <repositories>
  89.                 <repository>
  90.                     <!-- This is the recommended way of pointing central to our local repository. -->
  91.                     <id>central</id>
  92.                     <url>http://repo1.maven.org/?url-overridden-by-mirrorOf-above</url>
  93.                     <releases>
  94.                         <enabled>true</enabled>
  95.                     </releases>
  96.                     <snapshots>
  97.                         <enabled>true</enabled>
  98.                     </snapshots>
  99.                 </repository>
  100.             </repositories>
  101.  
  102.             <pluginRepositories>
  103.                 <pluginRepository>
  104.                     <id>central</id>
  105.                     <!-- This is the recommended way of pointing central to our local repository. -->
  106.                     <url>http://repo1.maven.org/?url-overridden-by-mirrorOf-above</url>
  107.                     <releases>
  108.                         <enabled>true</enabled>
  109.                     </releases>
  110.                     <snapshots>
  111.                         <enabled>true</enabled>
  112.                     </snapshots>
  113.                 </pluginRepository>
  114.             </pluginRepositories>
  115.         </profile>
  116.     </profiles>
  117. </settings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement