-
Notifications
You must be signed in to change notification settings - Fork 0
/
ivysettings.xml
59 lines (59 loc) · 3.8 KB
/
ivysettings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
license agreements. See the NOTICE file distributed with this work for additional
information regarding copyright ownership. The ASF licenses this file to
you under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of
the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. -->
<ivysettings>
<credentials host="oss.sonatype.org"
realm="Sonatype Nexus Repository Manager"
username="${sonatype.user}" passwd="${sonatype.pwd}"/>
<classpath url="https://repo1.maven.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar"/>
<classpath file="./pgpsigner-0.0.1.jar"/>
<typedef name="pgp2" classname="org.apache.ivy.plugins.signer.bouncycastle.OpenPGPSignatureGenerator2"/>
<settings defaultResolver="qaf" />
<property name="nexus-public"
value="https://oss.sonatype.org/content/groups/public"/>
<properties file="common-build.properties" override="false"/>
<caches defaultCacheDir="${ivy.default.ivy.user.dir}/cache" checkUpToDate="true" />
<resolvers>
<chain name="qaf">
<ibiblio name="central" m2compatible="true" />
<ibiblio name="jai" m2compatible="true"
root="https://repository.jboss.org/nexus/content/repositories/thirdparty-releases" />
<ibiblio name="nexus-snapshots" m2compatible="true" root="${nexus-snapshots}" checkmodified="true" changingPattern="*-SNAPSHOT" useMavenMetadata="true" />
</chain>
<ibiblio name="nexus" m2compatible="true" root="${nexus-public}"/>
<ibiblio name="nexus-releases" m2compatible="true" root="${nexus-releases}"/>
<ibiblio name="nexus-staging" m2compatible="true" root="${nexus-staging}" useMavenMetadata="true" signer="gpgsigner"/>
<filesystem name="local-m2-publish2" m2compatible="true" >
<ivy pattern="${ivy.default.ivy.user.dir}/local/[organisation]/[module]/[revision]/[module]-[revision].xml"/>
<artifact pattern="${ivy.default.ivy.user.dir}/local/[organisation]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]"/>
</filesystem>
<filesystem name="local-ivy-publish" local="true">
<ivy pattern="${ivy.default.ivy.user.dir}/cache/[organisation]/[module]/ivy-[revision].xml"/>
<artifact pattern="${ivy.default.ivy.user.dir}/cache/[organisation]/[module]/[type]s/[artifact]-[revision](-[classifier]).[ext]"/>
<artifact pattern="${ivy.default.ivy.user.dir}/cache/[organisation]/[module]/[type]s/[artifact]-[revision](-[classifier]).[ext]"/>
</filesystem>
<filesystem name="local-m2-publish">
<ivy pattern="${ivy.default.ivy.user.dir}/local/[organisation]/[module]/ivy-[revision].xml"/>
<artifact pattern="${ivy.default.ivy.user.dir}/local/[organisation]/[module]/[artifact]-[revision].[ext]"/>
</filesystem>
</resolvers>
<modules>
<module organisation="com.qmetry" name=".*" resolver="local-m2-publish" />
</modules>
<publications>
<artifact name="${ivy.module}" ext="jar" conf="binary" type="jar"/>
<artifact name="${ivy.module}-javadoc" ext="jar" conf="development" type="javadoc"/>
<artifact name="${ivy.module}-sources" ext="jar" conf="development" type="source"/>
</publications>
<signers >
<pgp2 name="gpgsigner" password="${gpg.pwd}" keyId="${gpg.name}" homeDir="/home/runner/.gnupg"/>
</signers>
</ivysettings>