Skip to content

Commit

Permalink
Renamed uberJar task to uberjar
Browse files Browse the repository at this point in the history
  • Loading branch information
gbevin committed Mar 13, 2023
1 parent 843ecf2 commit af708fb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugin/build.gradle.kts
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = "com.uwyn.rife2"
version = "1.0.7"
version = "1.0.8"

java {
toolchain {
Expand Down
Expand Up @@ -173,7 +173,7 @@ private static TaskProvider<Jar> registerUberJarTask(Project project,
Rife2Extension rife2Extension,
TaskContainer tasks,
TaskProvider<PrecompileTemplates> precompileTemplatesTask) {
return tasks.register("uberJar", Jar.class, jar -> {
return tasks.register("uberjar", Jar.class, jar -> {
jar.setGroup(RIFE2_GROUP);
jar.setDescription("Assembles the web application and all dependencies into a single jar archive.");
var base = project.getExtensions().getByType(BasePluginExtension.class);
Expand Down
Expand Up @@ -33,6 +33,6 @@ class PackagingTest extends AbstractFunctionalTest {
where:
task | archive
'jar' | 'build/libs/hello-1.0.jar'
'uberJar' | 'build/libs/hello-uber-1.0.jar'
'uberjar' | 'build/libs/hello-uber-1.0.jar'
}
}
Expand Up @@ -55,6 +55,6 @@ class TemplateCompilationTest extends AbstractFunctionalTest {
}

where:
task << ['jar', 'test', 'uberJar']
task << ['jar', 'test', 'uberjar']
}
}

0 comments on commit af708fb

Please sign in to comment.