Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the @ + number means for task name

I found many task names are end up with @ sign plus a number, please see example below

# Provides credentials for Azure Artifacts feeds and external Maven repositories.
- task: MavenAuthenticate@0
  #inputs:
    #artifactsFeeds: MyFeedInOrg1, MyFeedInOrg2 # Optional
    #mavenServiceConnections: serviceConnection1, serviceConnection2 # Optional

What's the purpuse of this @0 for universal identity?

like image 925
SLN Avatar asked Oct 28 '25 15:10

SLN


1 Answers

It represents for task version.

And this configuration corresponds to the task version selection operation from UI:

enter image description here

In your scenario, after the pipeline start to run, it will download MavenAuthenticate task which version is 0.*.

like image 142
Mengdi Liang Avatar answered Oct 31 '25 10:10

Mengdi Liang