rewrite-format-sql
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.mhagnumdw</groupId> <artifactId>rewrite-format-sql</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.mhagnumdw</groupId> <artifactId>rewrite-format-sql</artifactId> <version>1.0.0</version> <name>rewrite-format-sql</name> <description>An OpenRewrite recipe to format SQL/HQL code blocks in Java code and SQL files</description> <url>https://github.com/mhagnumdw/rewrite-format-sql</url> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/license/mit</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>MhagnumDw</name> <organization>MhagnumDw</organization> <organizationUrl>https://github.com/mhagnumdw</organizationUrl> </developer> </developers> <scm> <connection>scm:git:${project.scm.url}</connection> <developerConnection>scm:git:git@github.com:mhagnumdw/rewrite-format-sql.git</developerConnection> <url>https://github.com/mhagnumdw/rewrite-format-sql.git</url> <tag>v1.0.0</tag> </scm> <properties> <maven.compiler.release>8</maven.compiler.release> <maven.compiler.testRelease>17</maven.compiler.testRelease> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.openrewrite.recipe</groupId> <artifactId>rewrite-recipe-bom</artifactId> <version>3.9.0</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>5.11.0</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.38</version> <scope>provided</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.openrewrite</groupId> <artifactId>rewrite-java</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.openrewrite.recipe</groupId> <artifactId>rewrite-java-dependencies</artifactId> </dependency> <dependency> <groupId>com.github.vertical-blank</groupId> <artifactId>sql-formatter</artifactId> <version>2.0.5</version> </dependency> <!-- TESTS --> <dependency> <groupId>org.openrewrite</groupId> <artifactId>rewrite-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <compilerArgs> <arg>-parameters</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.3</version> <dependencies> <dependency> <groupId>me.fabriciorby</groupId> <artifactId>maven-surefire-junit5-tree-reporter</artifactId> <version>1.4.0</version> </dependency> </dependencies> <configuration> <reportFormat>plain</reportFormat> <consoleOutputReporter> <disable>true</disable> </consoleOutputReporter> <statelessTestsetInfoReporter implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoTreeReporterUnicode"> <theme>UNICODE</theme> </statelessTestsetInfoReporter> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>3.5.3</version> </plugin> <!-- JaCoCo: mvn clean test https://www.jacoco.org/jacoco/trunk/doc/maven.html --> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.13</version> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>default-report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.openrewrite.maven</groupId> <artifactId>rewrite-maven-plugin</artifactId> <version>6.11.0</version> <configuration> <exportDatatables>true</exportDatatables> <activeRecipes> <!-- https://docs.openrewrite.org/recipes/recipes/rewrite/openrewriterecipebestpractices --> <recipe>org.openrewrite.recipes.rewrite.OpenRewriteRecipeBestPractices</recipe> <!-- https://docs.openrewrite.org/recipes/java/recipes --> <recipe>org.openrewrite.java.recipes.JavaRecipeBestPractices</recipe> <recipe>org.openrewrite.java.recipes.RecipeNullabilityBestPractices</recipe> <recipe>org.openrewrite.java.recipes.RecipeTestingBestPractices</recipe> <recipe>org.openrewrite.java.recipes.CorrectlySpacedDescriptions</recipe> <recipe>org.openrewrite.java.recipes.SourceSpecTextBlockNewLine</recipe> <recipe>org.openrewrite.java.recipes.UseTreeRandomId</recipe> <recipe>org.openrewrite.java.recipes.ExecutionContextParameterName</recipe> <recipe>org.openrewrite.java.format.RemoveTrailingWhitespace</recipe> <!-- Maven --> <recipe>org.openrewrite.maven.BestPractices</recipe> <recipe>org.openrewrite.maven.RemoveUnusedProperties</recipe> <!-- SAST --> <recipe>org.openrewrite.staticanalysis.CommonStaticAnalysis</recipe> <recipe>org.openrewrite.staticanalysis.SimplifyTernaryRecipes</recipe> </activeRecipes> <failOnDryRunResults>true</failOnDryRunResults> <!-- Default is false --> <exclusions> <exclusion>src/test/java/jakarta/data/repository/Query.java</exclusion> <exclusion>src/test/java/org/hibernate/annotations/processing/HQL.java</exclusion> <exclusion>src/test/java/org/hibernate/annotations/processing/SQL.java</exclusion> </exclusions> </configuration> <dependencies> <dependency> <groupId>org.openrewrite.recipe</groupId> <artifactId>rewrite-rewrite</artifactId> <version>0.7.0</version> </dependency> <dependency> <groupId>org.openrewrite.recipe</groupId> <artifactId>rewrite-static-analysis</artifactId> <version>2.10.0</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <!-- https://docs.oracle.com/en/java/javase/17/docs/specs/man/javadoc.html#additional-options-provided-by-the-standard-doclet --> <doclint>all,-missing</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.1.1</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> <pushChanges>true</pushChanges> <scmCommentPrefix>[maven-release-plugin][ci skip] </scmCommentPrefix> <autoVersionSubmodules>true</autoVersionSubmodules> <preparationProfiles>central-release</preparationProfiles> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <waitUntil>published</waitUntil> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>central-release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>01D542C74EF9112377B3BBD3B1E2D19C51D2D717</keyname> <executable>gpg2</executable> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>