Skip to content

Commit 46aa38f

Browse files
committed
tmp
1 parent a99dbd1 commit 46aa38f

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/files/settings.xml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!--
2+
3+
Copyright 2012-2019 The Feign Authors
4+
5+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
6+
in compliance with the License. You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software distributed under the License
11+
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12+
or implied. See the License for the specific language governing permissions and limitations under
13+
the License.
14+
15+
-->
16+
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
17+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18+
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
19+
http://maven.apache.org/xsd/settings-1.0.0.xsd">
20+
<servers>
21+
<server>
22+
<id>ossrh</id>
23+
<username>${env.SONATYPE_USER}</username>
24+
<password>${env.SONATYPE_PASSWORD}</password>
25+
</server>
26+
</servers>
27+
<profiles>
28+
<profile>
29+
<id>ossrh</id>
30+
<activation>
31+
<activeByDefault>true</activeByDefault>
32+
</activation>
33+
<properties>
34+
<gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase>
35+
</properties>
36+
</profile>
37+
</profiles>
38+
</settings>
39+

0 commit comments

Comments
 (0)