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 Sep 30, 2024
1 parent 772fe0c commit 08dc7ce
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,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 @@ -340,7 +340,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 @@ -377,7 +377,7 @@ integrationTestGradle.dependsOn(

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
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ rootProject.name = 'htmlSanityCheck'

include('htmlSanityCheck-core')
include('htmlSanityCheck-gradle-plugin')
include('htmlsanitycheck-maven-plugin')
include('htmlSanityCheck-maven-plugin')

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 08dc7ce

Please sign in to comment.