The outputs on Jenkins are very different than the outputs when run locally. They must be gathered in a more sophisticated fashion that grepping console logs.
14 lines
430 B
XML
14 lines
430 B
XML
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
|
|
https://maven.apache.org/xsd/settings-1.0.0.xsd">
|
|
|
|
<servers>
|
|
<server>
|
|
<id>sonatype</id>
|
|
<username>${env.SONATYPE_USR}</username>
|
|
<password>${env.SONATYPE_PSW}</password>
|
|
</server>
|
|
</servers>
|
|
|
|
</settings> |