Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
cjayswal committed Nov 21, 2019
2 parents 71f28f9 + 36d193e commit 5826c8c
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 9 deletions.
6 changes: 3 additions & 3 deletions build.properties
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
artifact.name=qaf-cucumber
version-num=2.1
build-num=15-SNAPSHOT
build-num=15-beta-1
#-beta-3
#-SNAPSHOT
publish.resolver=nexus-snapshots
publish.resolver=nexus-staging
#snapshots
#releases
status=snapshots
status=release
#snapshots
#release
release.num=${version-num}.${build-num}
Expand Down
4 changes: 2 additions & 2 deletions ivy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</configurations>

<dependencies>
<dependency org="com.qmetry" name="qaf" rev="2.1.15-SNAPSHOT" conf="runtime->default"/>
<dependency org="io.cucumber" name="cucumber-core" rev="5.0.0-RC1" conf="runtime->default"/>
<dependency org="com.qmetry" name="qaf" rev="2.1.15" conf="provided->default"/>
<dependency org="io.cucumber" name="cucumber-core" rev="5.0.0-RC1" conf="provided->default"/>
</dependencies>
</ivy-module>
28 changes: 24 additions & 4 deletions ivysettings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,36 @@
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}"/>
<settings defaultResolver="qaf" />
<property name="nexus-snapshots" value="https://oss.sonatype.org/content/repositories/snapshots"/>
<property name="nexus-public"
value="https://oss.sonatype.org/content/groups/public"/>
<property name="nexus-releases" value="https://oss.sonatype.org/content/repositories/releases"/>
<property name="nexus-snapshots" value="https://oss.sonatype.org/content/repositories/snapshots"/>
<property name="nexus-staging" value=" https://oss.sonatype.org/service/local/staging/deploy/maven2"/>

<resolvers>
<chain name="qaf">
<ibiblio name="central" m2compatible="true" />
<ibiblio name="QAF" m2compatible="true"
root="https://qmetry.github.io/qaf/dist" />
<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" />
</chain>
<ibiblio name="nexus" m2compatible="true" root="${nexus-public}"/>
<ibiblio name="nexus-releases" m2compatible="true" root="${nexus-releases}" signer="mypgp"/>
<ibiblio name="nexus-snapshots" m2compatible="true" root="${nexus-snapshots}" checkmodified="true" changingPattern="*-SNAPSHOT" useMavenMetadata="true" />
<ibiblio name="nexus-staging" m2compatible="true" root="${nexus-staging}" useMavenMetadata="true" signer="mypgp"/>
<filesystem name="local-m2-publish" m2compatible="true">
<artifact pattern="${basedir}/repository/[organisation]/[module]/[revision]/qaf-[revision](-[classifier]).[ext]"/>
</filesystem>
</resolvers>
<publications>
<artifact name="${artifact.name}" ext="jar" conf="binary" type="jar"/>
<artifact name="${artifact.name}-javadoc" ext="jar" conf="development" type="javadoc"/>
<artifact name="${artifact.name}-sources" ext="jar" conf="development" type="source"/>
</publications>
<signers>
<pgp name="${gpg.name}" password="${gpg.pwd}" />
</signers>
</ivysettings>

0 comments on commit 5826c8c

Please sign in to comment.