Skip to content

Commit

Permalink
Fix test x3
Browse files Browse the repository at this point in the history
  • Loading branch information
socheatsok78 committed Apr 3, 2023
1 parent 1b6283b commit deacd25
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,12 @@
* Learn more about Gradle by exploring our samples at https://docs.gradle.org/8.0.2/samples
* This project uses @Incubating APIs which are subject to change.
*/
println "Project name: " + project.name
println "Project version: " + project.version
println "Project group: " + project.group

if (project.version != "") {
println "Project artifact: ${project.name}-${project.version}.jar"
} else {
println "Project artifact: ${project.name}.jar"
}
1 change: 1 addition & 0 deletions test/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version=1.0-SNAPSHOT
1 change: 0 additions & 1 deletion test/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@
*/

rootProject.name = 'gradle-metadata-action-example-project'
version = '1.0-SNAPSHOT'

0 comments on commit deacd25

Please sign in to comment.