This is an automated email from the ASF dual-hosted git repository.
lprimak pushed a commit to branch 3.x
in repository https://gitbox.apache.org/repos/asf/shiro.git
The following commit(s) were added to refs/heads/3.x by this push:
new 2c290426f chore: restored karaf verify for JDK 17-25+
2c290426f is described below
commit 2c290426fede169381a65230a1abe4c124de2212
Author: lprimak <[email protected]>
AuthorDate: Sun Feb 15 12:09:01 2026 -0600
chore: restored karaf verify for JDK 17-25+
---
support/features/pom.xml | 70 ++++++++++++++++++------------------------------
1 file changed, 26 insertions(+), 44 deletions(-)
diff --git a/support/features/pom.xml b/support/features/pom.xml
index 4942b309b..2a541ad2e 100644
--- a/support/features/pom.xml
+++ b/support/features/pom.xml
@@ -130,51 +130,33 @@
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<version>${karaf.version}</version>
+ <executions>
+ <execution>
+ <id>karaf-verify</id>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>verify</goal>
+ </goals>
+ <configuration>
+ <descriptors>
+
<descriptor>mvn:org.apache.karaf.features/framework/${karaf.version}/xml/features</descriptor>
+
<descriptor>mvn:org.apache.karaf.features/enterprise/${karaf.version}/xml/features</descriptor>
+
<descriptor>mvn:org.apache.karaf.features/specs/${karaf.version}/xml/features</descriptor>
+
<descriptor>mvn:org.apache.karaf.features/spring-legacy/${karaf.version}/xml/features</descriptor>
+
<descriptor>file:${project.build.directory}/classes/features.xml</descriptor>
+ </descriptors>
+
<distribution>org.apache.karaf.features:framework</distribution>
+ <javase>${jdk.version}</javase>
+ <framework>
+ <feature>framework</feature>
+ </framework>
+ <features>
+ <feature>shiro*</feature>
+ </features>
+ </configuration>
+ </execution>
+ </executions>
</plugin>
</plugins>
</build>
-
- <profiles>
- <profile>
- <id>karaf-jdk-25</id>
- <activation>
- <jdk>[25,)</jdk>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.karaf.tooling</groupId>
- <artifactId>karaf-maven-plugin</artifactId>
- <version>${karaf.version}</version>
- <executions>
- <execution>
- <id>karaf-verify</id>
- <phase>process-resources</phase>
- <goals>
- <goal>verify</goal>
- </goals>
- <configuration>
- <descriptors>
-
<descriptor>mvn:org.apache.karaf.features/framework/${karaf.version}/xml/features</descriptor>
-
<descriptor>mvn:org.apache.karaf.features/enterprise/${karaf.version}/xml/features</descriptor>
-
<descriptor>mvn:org.apache.karaf.features/specs/${karaf.version}/xml/features</descriptor>
-
<descriptor>mvn:org.apache.karaf.features/spring-legacy/${karaf.version}/xml/features</descriptor>
-
<descriptor>file:${project.build.directory}/classes/features.xml</descriptor>
- </descriptors>
-
<distribution>org.apache.karaf.features:framework</distribution>
- <javase>${jdk.version}</javase>
- <framework>
- <feature>framework</feature>
- </framework>
- <features>
- <feature>shiro*</feature>
- </features>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
</project>