This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fetch = require('node-fetch') | |
| const base64 = require('base-64') | |
| const OWNER = 'robertobattaglia' | |
| const USERNAME = 'robertobattaglia' | |
| const PASSWORD = 'PASSWORD' | |
| const numberOfPages=4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pipeline { | |
| agent any | |
| triggers { | |
| bitbucketPush() | |
| } | |
| tools { | |
| jdk 'OpenJDK_1_8_0' | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <servers> | |
| <server> | |
| <username>admin</username> | |
| <password>password</password> | |
| <id>artifactory-server</id> | |
| </server> | |
| </servers> |