Github
Join us on Slack
Search…
Introduction to OpenRewrite
Getting Started
Quickstart: Maven and Gradle
Recipe Development Environment
Tutorials & Guides
Common Static Analysis Issue Remediation
Automatically Fix Checkstyle Violations
Migrate to Java 11 from Java 8
Migrate to JUnit 5 from JUnit 4
Migrate to Spring Boot 2 from Spring Boot 1
Migrate to Quarkus 2 from Quarkus 1
Migrate to Micronaut 3 from Micronaut 2
Migrate to SLF4J from Log4j
Use SLF4J Parameterized Logging
Writing a Java Refactoring Recipe
Modifying Methods with JavaTemplate
Refactoring with Declarative YAML Recipes
Automating Maven Dependency Management
Running Rewrite without build tool plugins
Writing recipes over multiple source file types
Reference
Latest versions of every OpenRewrite module
Maven Plugin Configuration
Gradle Plugin Configuration
JsonPath and JsonPathMatcher Reference
Declarative YAML Format
Method Patterns
Dependency Version Selectors
Recipes
Gradle
Hcl
Java
JSON
Maven
Add Managed Maven Dependency
Add Maven dependency
Add Maven plugin
Add Maven plugin dependencies
Change Maven Parent Pom
Change Maven dependency groupId, artifactId and optionally the version
Change Maven dependency scope
Change Maven managed dependency groupId, artifactId and optionally the version
Change Maven plugin configuration
Change Maven plugin dependencies
Change Maven plugin executions
Change Maven project property value
Exclude Maven dependency
Manage dependencies
Order POM elements
Remove Maven dependency
Remove Maven managed dependency
Remove Maven plugin
Remove Maven project property
Remove exclusion
Remove redundant explicit dependency versions
Set Maven project packaging
Upgrade Maven dependency version
Upgrade Maven parent project version
Upgrade Maven plugin version
Cleanup
Search
Security
Utilities
Properties
XML
YAML
CircleCI
Concourse
Github Actions
Kubernetes
Terraform
Concepts & Explanations
Abstract Syntax Trees
Recipes
Visitors
Styles
Environment
Markers
JavaTemplate
Pointcut Expressions
Design Partners
Design Partner 1
Powered By
GitBook
Order POM elements
** org.openrewrite.maven.OrderPomElements**
Order POM elements according to the
recommended
order.
Tags
RSPEC-3423
Source
​
Github
,
Issue Tracker
,
Maven Central
​
groupId: org.openrewrite
artifactId: rewrite-maven
version: 7.22.0
Usage
This recipe has no required configuration parameters and comes from a rewrite core library. It can be activated directly without adding any dependencies.
Gradle
Maven
build.gradle
1
plugins
{
2
id
(
"org.openrewrite.rewrite"
)
version
(
"5.20.0"
)
3
}
4
​
5
rewrite
{
6
activeRecipe
(
"org.openrewrite.maven.OrderPomElements"
)
7
}
8
​
9
repositories
{
10
mavenCentral
()
11
}
Copied!
pom.xml
1
<
project
>
2
<
build
>
3
<
plugins
>
4
<
plugin
>
5
<
groupId
>
org.openrewrite.maven
</
groupId
>
6
<
artifactId
>
rewrite-maven-plugin
</
artifactId
>
7
<
version
>
4.23.0
</
version
>
8
<
configuration
>
9
<
activeRecipes
>
10
<
recipe
>
org.openrewrite.maven.OrderPomElements
</
recipe
>
11
</
activeRecipes
>
12
</
configuration
>
13
</
plugin
>
14
</
plugins
>
15
</
build
>
16
</
project
>
Copied!
Recipes can also be activated directly from the command line by adding the argument
-Drewrite.activeRecipes=org.openrewrite.maven.OrderPomElements
Previous
Manage dependencies
Next
Remove Maven dependency
Last modified
5d ago
Export as PDF
Copy link
Contents
Tags
Source
Usage