I am trying with Gradle first time. I am trying with a maven java project to compile and create a jar file. It is compiling and creating the jar file in build/libs directory as
If you are using a newer Gradle version, baseName, archieveName will now be deprecated. Instead, use something like
baseName
archieveName
jar { archivesBaseName = 'project1' archiveVersion = '1.0-SNAPSHOT' }