Skip to content

Commit

Permalink
format: Reformat Gradle files based on .editorconfig
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Vitale <[email protected]>
  • Loading branch information
ThomasVitale committed Jan 28, 2024
1 parent bcd403e commit 451a9db
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 19 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ end_of_line = lf
indent_style = space
insert_final_newline = true

[*.gradle]
indent_size = 4
ij_continuation_indent_size = 8

[*.java]
indent_size = 4
max_line_length = 120
Expand Down
22 changes: 11 additions & 11 deletions arconia-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ plugins {
}

dependencies {
implementation 'org.slf4j:slf4j-api'
implementation 'org.springframework:spring-context'
implementation 'org.slf4j:slf4j-api'
implementation 'org.springframework:spring-context'

testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

publishing {
publications {
mavenJava(MavenPublication) {
pom {
name = "Arconia Core"
description = "Core interfaces and classes used by the Arconia framework."
}
}
}
publications {
mavenJava(MavenPublication) {
pom {
name = "Arconia Core"
description = "Core interfaces and classes used by the Arconia framework."
}
}
}
}
2 changes: 1 addition & 1 deletion arconia-spring-boot-autoconfigure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies {
optional 'org.springframework:spring-context'
optional 'org.springframework:spring-web'

testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

tasks.named('compileJava') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter'

api project(':arconia-spring-boot-autoconfigure')

Expand Down
12 changes: 6 additions & 6 deletions arconia-web/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ plugins {
}

dependencies {
implementation project(':arconia-core')
implementation project(':arconia-core')

implementation 'jakarta.servlet:jakarta.servlet-api'
implementation 'org.slf4j:slf4j-api'
implementation 'jakarta.servlet:jakarta.servlet-api'
implementation 'org.slf4j:slf4j-api'

implementation 'org.springframework:spring-context'
implementation 'org.springframework:spring-web'
implementation 'org.springframework:spring-context'
implementation 'org.springframework:spring-web'

testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

publishing {
Expand Down

0 comments on commit 451a9db

Please sign in to comment.