i´d like to know about where to find maven plugins in the following format:

<plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-jar-plugin</artifactId>
             <version>2.4</version>
             <configuration>
                <archive>
                                
                     <manifest>
                                    
                     <addClasspath>true</addClasspath>
                                    
                                   
                     <mainClass>uuu.Saludo</mainClass>
                      </manifest>
                 </archive>
             </configuration>
 </plugin>
          

when i go to the maven repository i find plugins in the following format instead:

<!-- Source: https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-jar-plugin -->
<dependency>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <version>3.5.0</version>
    <scope>compile</scope>
</dependency>