Skip to content

Commit

Permalink
Merge branch 'main' into checkstyle_test_1
Browse files Browse the repository at this point in the history
  • Loading branch information
lprimak committed Oct 5, 2023
2 parents 572c9f3 + 566353c commit 8e71cad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,10 @@ public static WebArchive createDeployment(String archive) {
.addAsResource("META-INF/beans.xml")
.addAsResource(new StringAsset("org.apache.shiro.cdi.ShiroSecurityExtension"),
jakartify("META-INF/services/javax.enterprise.inject.spi.Extension"))
.addAsResource("META-INF/services/org.slf4j.spi.SLF4JServiceProvider")
.addAsWebInfResource(new StringAsset(
"<payara-web-app><class-loader delegate=\"false\"/></payara-web-app>"),
"payara-web.xml")
.addPackages(true, "org.apache.shiro")
.addPackages(true, "org.apache.commons")
.deletePackages(true, "org.apache.shiro.testing")
Expand Down
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
<spring-boot.version>2.7.16</spring-boot.version>
<guice.version>4.2.3</guice.version>
<jaxrs.api.version>2.1.6</jaxrs.api.version>
<htmlunit.version>3.5.0</htmlunit.version>
<htmlunit.version>3.6.0</htmlunit.version>
<bouncycastle.version>1.76</bouncycastle.version>

<!-- Test 3rd-party dependencies: -->
Expand Down Expand Up @@ -447,6 +447,8 @@
<target>${maven.compiler.release}</target>
<complianceLevel>${maven.compiler.release}</complianceLevel>
<showWeaveInfo>true</showWeaveInfo>
<!-- Fix for https://github.com/apache/shiro/issues/1100 -->
<forceAjcCompile>true</forceAjcCompile>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit 8e71cad

Please sign in to comment.