Skip to content

Commit

Permalink
change output name for jar
Browse files Browse the repository at this point in the history
  • Loading branch information
petervanmanenritense committed Aug 21, 2024
1 parent f6892d9 commit a9aa2b7
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

buildscript {
repositories {
mavenCentral()
Expand Down Expand Up @@ -100,6 +99,18 @@ dockerCompose {
useComposeFiles.addAll("docker-compose-integration-test.yml")
}

jar {
enabled = true
manifest {
attributes(
"Implementation-Title": "spotler-plugin",
"Implementation-Version": "0.1"
)
archiveBaseName.set("spotler-plugin")
}

}

test {
useJUnitPlatform()
}
Expand Down

0 comments on commit a9aa2b7

Please sign in to comment.