Skip to content

Commit

Permalink
Merge pull request #24 from kalinchan/FISH-5751
Browse files Browse the repository at this point in the history
FISH-5751 Upgrade ASM to version 9.1
  • Loading branch information
kalinchan authored Oct 1, 2021
2 parents 81d4b40 + c39ad78 commit e41e7ec
Show file tree
Hide file tree
Showing 79 changed files with 85 additions and 85 deletions.
2 changes: 1 addition & 1 deletion bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-bom</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
<packaging>pom</packaging>

<name>HK2 Bom Pom</name>
Expand Down
2 changes: 1 addition & 1 deletion class-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-parent</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>

<groupId>org.glassfish.hk2</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class ModelClassVisitor extends ClassVisitor {

public ModelClassVisitor(ParsingContext ctx, URI definingURI, String entryName,
boolean isApplicationClass) {
super(Opcodes.ASM7);
super(Opcodes.ASM9);

this.ctx = ctx;
this.definingURI = definingURI;
Expand Down Expand Up @@ -353,7 +353,7 @@ private class ModelMethodVisitor extends MethodVisitor {
private final MethodVisitingContext context;

private ModelMethodVisitor(MemberVisitingContext context) {
super(Opcodes.ASM7);
super(Opcodes.ASM9);

this.context = new MethodVisitingContext(context.modelUnAnnotatedMembers);
}
Expand Down Expand Up @@ -422,7 +422,7 @@ private class ModelDefaultAnnotationVisitor extends AnnotationVisitor {
private final MethodVisitingContext context;

public ModelDefaultAnnotationVisitor(MethodVisitingContext visitingContext) {
super(Opcodes.ASM7);
super(Opcodes.ASM9);
this.context = visitingContext;
}

Expand All @@ -438,7 +438,7 @@ private class ModelFieldVisitor extends FieldVisitor {
private final FieldVisitingContext context;

private ModelFieldVisitor(MemberVisitingContext context) {
super(Opcodes.ASM7);
super(Opcodes.ASM9);

this.context = new FieldVisitingContext(context.modelUnAnnotatedMembers);
}
Expand Down Expand Up @@ -491,7 +491,7 @@ private class ModelAnnotationVisitor extends AnnotationVisitor {
private final AnnotationVisitingContext context;

private ModelAnnotationVisitor() {
super(Opcodes.ASM7);
super(Opcodes.ASM9);

this.context = new AnnotationVisitingContext();
}
Expand Down Expand Up @@ -566,7 +566,7 @@ private class ArrayVisitor extends AnnotationVisitor {
protected List values = new ArrayList();

public ArrayVisitor(AnnotationVisitor av) {
super(Opcodes.ASM7, av);
super(Opcodes.ASM9, av);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class SignatureVisitorImpl extends SignatureVisitor {
private final List<ParameterizedInterfaceModelImpl> parameterizedIntf = new ArrayList<>();

public SignatureVisitorImpl(TypeBuilder typeBuilder) {
super(Opcodes.ASM7);
super(Opcodes.ASM9);
this.typeBuilder = typeBuilder;
}

Expand Down
2 changes: 1 addition & 1 deletion examples/caching/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>examples</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion examples/caching/runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>caching-aop-example</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>

<artifactId>caching-aop-example-runner</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion examples/caching/system/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>caching-aop-example</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>

<artifactId>caching-aop-example-system</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion examples/configuration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>examples</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion examples/configuration/webserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>configuration-examples</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>

<artifactId>webserver-configuration-example</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion examples/configuration/xml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>configuration-examples</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>

<artifactId>xml-configuration-example</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-resolver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>examples</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<artifactId>custom-resolver-example</artifactId>
<name>Custom Resolver Example</name>
Expand Down
2 changes: 1 addition & 1 deletion examples/events/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>examples</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion examples/events/threaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>event-examples</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>

<artifactId>threading-event-example</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion examples/operations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>examples</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<artifactId>operations-example</artifactId>
<name>Operations Example</name>
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-parent</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion examples/security-lockdown/alice/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>security-lockdown-example</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>

<artifactId>security-lockdown-example-alice</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion examples/security-lockdown/mallory/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>security-lockdown-example</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>

<artifactId>security-lockdown-example-mallory</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion examples/security-lockdown/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>examples</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion examples/security-lockdown/runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>security-lockdown-example</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>

<artifactId>security-lockdown-example-runner</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion examples/security-lockdown/system/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>security-lockdown-example</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>

<artifactId>security-lockdown-example-system</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion external/aopalliance/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>external</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<groupId>org.glassfish.hk2.external</groupId>
<artifactId>aopalliance-repackaged</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion external/jsr330/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>external</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<groupId>org.glassfish.hk2.external</groupId>
<artifactId>jakarta.inject</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion external/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-parent</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion guice-bridge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-parent</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>guice-bridge</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion hk2-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-parent</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion hk2-configuration/hk2-integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-configuration</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>

<artifactId>hk2-configuration-integration</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion hk2-configuration/manager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-configuration</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>

<artifactId>hk2-configuration-hub</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion hk2-configuration/persistence/hk2-xml/hk2-json/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-xml-parent</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<artifactId>hk2-json</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion hk2-configuration/persistence/hk2-xml/hk2-pbuf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-xml-parent</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<artifactId>hk2-pbuf</artifactId>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-xml-parent</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<artifactId>hk2-xml-integration-test</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion hk2-configuration/persistence/hk2-xml/main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-xml-parent</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<artifactId>hk2-xml</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion hk2-configuration/persistence/hk2-xml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-configuration-persistence</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion hk2-configuration/persistence/hk2-xml/schema/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-xml-parent</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<artifactId>hk2-xml-schema</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion hk2-configuration/persistence/hk2-xml/test1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-xml-parent</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<artifactId>hk2-xml-test</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion hk2-configuration/persistence/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-configuration</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion hk2-configuration/persistence/property-file/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-configuration-persistence</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<artifactId>hk2-property-file</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion hk2-configuration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-parent</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion hk2-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-parent</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<artifactId>hk2-core</artifactId>
<name>HK2 core module</name>
Expand Down
2 changes: 1 addition & 1 deletion hk2-extras/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-parent</artifactId>
<version>2.6.1.payara-p6</version>
<version>2.6.1.payara-p7</version>
</parent>
<groupId>org.glassfish.hk2</groupId>
<artifactId>hk2-extras</artifactId>
Expand Down
Loading

0 comments on commit e41e7ec

Please sign in to comment.