Skip to content

Commit

Permalink
#314 Align caps of Maven plugin module
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheman committed Dec 14, 2024
1 parent fba0020 commit eea0511
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ allprojects {

subprojects {
// Exclude the 'donotbuild' subproject from compiling Java code
if (project.name == 'htmlsanitycheck-maven-plugin') {
if (project.name == 'htmlSanityCheck-maven-plugin') {
tasks.withType(JavaCompile) {
enabled = false
}
Expand Down Expand Up @@ -358,7 +358,7 @@ tasks.register("buildMavenPuginWithMaven") {
group("compile")
description("Use maven to build the maven plugin")

final String BUILD_DIRECTORY = "htmlsanitycheck-maven-plugin"
final String BUILD_DIRECTORY = "htmlSanityCheck-maven-plugin"

doLast {
def result = exec {
Expand Down Expand Up @@ -412,7 +412,7 @@ clean.dependsOn(cleanIntegrationTest)

integrationTestMavenOnly.mustRunAfter(
':htmlSanityCheck-core:publishAllPublicationsToMyLocalRepositoryForFullIntegrationTestsRepository',
':htmlsanitycheck-maven-plugin:publishToMavenLocal'
':htmlSanityCheck-maven-plugin:publishToMavenLocal'
)

tasks.register("integrationTestMaven") {
Expand Down
2 changes: 1 addition & 1 deletion htmlSanityCheck-maven-plugin/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Use the following snippet inside a Maven build file:
----
<plugin>
<groupId>org.aim42.htmlSanityCheck</groupId>
<artifactId>htmlsanitycheck-maven-plugin</artifactId>
<artifactId>htmlSanityCheck-maven-plugin</artifactId>
<version>2.0.0-rc1</version> // <1>
<executions>
<execution>
Expand Down
2 changes: 1 addition & 1 deletion htmlSanityCheck-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<groupId>org.aim42.htmlSanityCheck</groupId>
<artifactId>htmlsanitycheck-maven-plugin</artifactId>
<artifactId>htmlSanityCheck-maven-plugin</artifactId>
<name>HTML Sanitycheck Maven Plugin</name>
<version>2.0.0-rc1</version>
<packaging>maven-plugin</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<plugins>
<plugin>
<groupId>org.aim42.htmlSanityCheck</groupId>
<artifactId>htmlsanitycheck-maven-plugin</artifactId>
<artifactId>htmlSanityCheck-maven-plugin</artifactId>
<version>2.0.0-rc1</version>
<executions>
<execution>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<plugins>
<plugin>
<groupId>org.aim42.htmlSanityCheck</groupId>
<artifactId>htmlsanitycheck-maven-plugin</artifactId>
<artifactId>htmlSanityCheck-maven-plugin</artifactId>
<version>2.0.0-rc1</version>
<executions>
<execution>
Expand Down
2 changes: 1 addition & 1 deletion integration-test/maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<plugins>
<plugin>
<groupId>org.aim42.htmlSanityCheck</groupId>
<artifactId>htmlsanitycheck-maven-plugin</artifactId>
<artifactId>htmlSanityCheck-maven-plugin</artifactId>
<version>2.0.0-rc1</version>
<executions>
<execution>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<plugins>
<plugin>
<groupId>org.aim42.htmlSanityCheck</groupId>
<artifactId>htmlsanitycheck-maven-plugin</artifactId>
<version>2.0.0-SNAPSHOT</version>
<artifactId>htmlSanityCheck-maven-plugin</artifactId>
<version>2.0.0-rc1</version>
<executions>
<execution>
<phase>compile</phase>
Expand Down

0 comments on commit eea0511

Please sign in to comment.