Commit 0296ff6b authored by Andy Wilkinson's avatar Andy Wilkinson

Fix dependency management for Byte Buddy

 - Manage byte-buddy-agent in addition to byte-buddy
 - Remove dependency management from spring-boot-parent now that
   dependency management for Byte Buddy is provided in
   spring-boot-dependencies

Closes gh-9373
parent 8e2986c8
...@@ -959,6 +959,11 @@ ...@@ -959,6 +959,11 @@
<artifactId>byte-buddy</artifactId> <artifactId>byte-buddy</artifactId>
<version>${byte-buddy.version}</version> <version>${byte-buddy.version}</version>
</dependency> </dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>${byte-buddy.version}</version>
</dependency>
<dependency> <dependency>
<groupId>net.java.dev.jna</groupId> <groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId> <artifactId>jna</artifactId>
......
...@@ -80,11 +80,6 @@ ...@@ -80,11 +80,6 @@
<artifactId>jline</artifactId> <artifactId>jline</artifactId>
<version>2.11</version> <version>2.11</version>
</dependency> </dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.6.0</version>
</dependency>
<dependency> <dependency>
<groupId>net.sf.jopt-simple</groupId> <groupId>net.sf.jopt-simple</groupId>
<artifactId>jopt-simple</artifactId> <artifactId>jopt-simple</artifactId>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment