Skip to content

Commit

Permalink
Adapt mock build.gradle to get plugin from MavenCentral
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbasle committed Aug 19, 2022
1 parent 511b48f commit 5c78f14
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,18 @@ buildscript {
//the plugin feature only works with the -original jar !!
//otherwise implemented Plugin interface is the shaded one
classpath files("@AGENT@")
//version 1.12.13 cannot be found on Gradle Plugin Repository, this syntax allows looking it up on MavenCentral
classpath 'net.bytebuddy:byte-buddy-gradle-plugin:@BYTE_BUDDY_VERSION@'
}
}


plugins {
id "net.bytebuddy.byte-buddy-gradle-plugin" version "@BYTE_BUDDY_VERSION@"
id 'java'
}

apply plugin: "net.bytebuddy.byte-buddy-gradle-plugin"

repositories {
mavenCentral()
}
Expand Down

0 comments on commit 5c78f14

Please sign in to comment.