File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ before_install:
7474install :
7575 # - unzip utPLSQL.zip
7676 - unzip utPLSQL-cli.zip && chmod -R u+x utPLSQL-cli
77+ - cp .travis/settings.xml $MAVEN_CFG/settings.xml
7778 - mvn dependency:copy-dependencies -DoutputDirectory=utPLSQL-cli/lib
7879 - pip install mkdocs
7980 - bash .travis/install_sqlcl.sh
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+
3+ <!--
4+ Licensed to the Apache Software Foundation (ASF) under one
5+ or more contributor license agreements. See the NOTICE file
6+ distributed with this work for additional information
7+ regarding copyright ownership. The ASF licenses this file
8+ to you under the Apache License, Version 2.0 (the
9+ "License"); you may not use this file except in compliance
10+ with the License. You may obtain a copy of the License at
11+
12+ http://www.apache.org/licenses/LICENSE-2.0
13+
14+ Unless required by applicable law or agreed to in writing,
15+ software distributed under the License is distributed on an
16+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17+ KIND, either express or implied. See the License for the
18+ specific language governing permissions and limitations
19+ under the License.
20+ -->
21+
22+ <settings xmlns =" http://maven.apache.org/SETTINGS/1.0.0"
23+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
24+ xsi : schemaLocation =" http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd" >
25+
26+ <servers >
27+ <server >
28+ <id >maven.oracle.com</id >
29+ <username >${env.ORACLE_OTN_USER}</username >
30+ <password >${env.ORACLE_OTN_PASSWORD}</password >
31+ <configuration >
32+ <basicAuthScope >
33+ <host >ANY</host >
34+ <port >ANY</port >
35+ <realm >OAM 11g</realm >
36+ </basicAuthScope >
37+ <httpConfiguration >
38+ <all >
39+ <params >
40+ <property >
41+ <name >http.protocol.allow-circular-redirects</name >
42+ <value >%b,true</value >
43+ </property >
44+ </params >
45+ </all >
46+ </httpConfiguration >
47+ </configuration >
48+ </server >
49+ </servers >
50+
51+ </settings >
You can’t perform that action at this time.
0 commit comments