Skip to content

Commit

Permalink
Sort dependencies by group ID and artifact ID
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Aug 17, 2023
1 parent af8d297 commit 9419e1b
Showing 1 changed file with 33 additions and 34 deletions.
67 changes: 33 additions & 34 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,65 +75,55 @@
</dependencyManagement>

<dependencies>
<!-- Scriptler is used to eval Groovy parameters -->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>scriptler</artifactId>
<version>3.5</version>
<optional>true</optional>
</dependency>
<!-- JQuery is included only once -->
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>jquery3-api</artifactId>
</dependency>
<!-- escaping output of dynamic reference parameters -->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>antisamy-markup-formatter</artifactId>
</dependency>
<!-- script-security plug-in integration -->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>script-security</artifactId>
</dependency>
<!-- escaping output of dynamic reference parameters -->
<!-- Scriptler is used to eval Groovy parameters -->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>antisamy-markup-formatter</artifactId>
<artifactId>scriptler</artifactId>
<version>3.5</version>
<optional>true</optional>
</dependency>
<!-- testing -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>5.4.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>matrix-auth</artifactId>
<artifactId>git</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>nodelabelparameter</artifactId>
<version>1.10.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-multibranch</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-multibranch</artifactId>
<artifactId>git</artifactId>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>git</artifactId>
<artifactId>matrix-auth</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>git</artifactId>
<classifier>tests</classifier>
<artifactId>nodelabelparameter</artifactId>
<version>1.10.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -147,17 +137,26 @@
<artifactId>workflow-basic-steps</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.11.0</version>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-multibranch</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>5.4.1</version>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-multibranch</artifactId>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.11.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 9419e1b

Please sign in to comment.