Remove asm dependency from boot ls

Use the repackaged asm bits that are
contained withing spring-core instead.
This commit is contained in:
Kris De Volder
2019-09-24 14:07:54 -07:00
parent cc699ec497
commit 2219d4697d
2 changed files with 1 additions and 6 deletions

View File

@@ -39,11 +39,6 @@
<groupId>org.springframework.ide.vscode</groupId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>6.1.1</version>
</dependency>
</dependencies>
<profiles>

View File

@@ -18,7 +18,7 @@ import java.util.Set;
import org.json.JSONArray;
import org.json.JSONObject;
import org.objectweb.asm.Type;
import org.springframework.asm.Type;
public class Boot20DispatcherServletMapping implements RequestMapping {