Skip to content

Commit

Permalink
SLING-7828 - Generating adapter metadata fails when using Java 8 feat…
Browse files Browse the repository at this point in the history
…ures: invalid constant type: 18

Use a more recent version of javassist. The exclusion is needed since
javassist has changed Maven coordinates in the meantime.
  • Loading branch information
rombert committed Aug 14, 2018
1 parent c4b6943 commit ca7dd5d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,17 @@
<groupId>net.sf.scannotation</groupId>
<artifactId>scannotation</artifactId>
<version>1.0.2</version>
<exclusions>
<exclusion>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.18.2-GA</version>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
Expand Down

0 comments on commit ca7dd5d

Please sign in to comment.