| POM: |
Show
hide
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>bundles-pom</artifactId>
<groupId>org.apache.servicemix.bundles</groupId>
<version>16</version>
<relativePath>../bundles-pom/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.spring-security-config</artifactId>
<packaging>bundle</packaging>
<name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
<version>6.1.9_3</version>
<scm>
<connection>scm:git:https://gitbox.apache.org/repos/asf/servicemix-bundles.git</connection>
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/servicemix-bundles.git</developerConnection>
<tag>org.apache.servicemix.bundles.spring-security-config-6.1.9_3</tag>
<url>https://gitbox.apache.org/repos/asf?p=servicemix-bundles.git</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>${pkgGroupId}:${pkgArtifactId}</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
<includes>
<include>META-INF/spring*</include>
</includes>
</filter>
</filters>
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
<createDependencyReducedPom>true</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>6.1.9</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-crypto</artifactId>
<version>6.1.9</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
<version>6.0.19</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-observation</artifactId>
<version>1.10.13</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-commons</artifactId>
<version>1.10.13</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>6.0.19</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>6.0.19</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>6.0.19</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>6.0.19</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jcl</artifactId>
<version>6.0.19</version>
<scope>compile</scope>
</dependency>
</dependencies>
<properties>
<servicemix.osgi.source.version>6.1.9.1</servicemix.osgi.source.version>
<pkgGroupId>org.springframework.security</pkgGroupId>
<pkgVersion>6.1.9</pkgVersion>
<servicemix.osgi.export.pkg>org.springframework.security.config</servicemix.osgi.export.pkg>
<pkgArtifactId>spring-security-config</pkgArtifactId>
<servicemix.osgi.import.pkg>com.nimbusds.*;resolution:=optional,
io.rsocket.plugins;resolution:=optional,
org.reactivestreams;resolution:=optional,
reactor.*;resolution:=optional,
org.aspectj.*;resolution:=optional,
org.openid4java.*;resolution:=optional,
kotlin*;resolution:=optional,
org.opensaml*;resolution:=optional,
org.springframework.cglib;resolution:=optional,
org.springframework.cglib.core;resolution:=optional,
org.springframework.cglib.proxy;resolution:=optional,
org.springframework.cglib.reflect;resolution:=optional,
org.springframework.jdbc.*;resolution:=optional,
org.springframework.ldap*;resolution:=optional,
org.springframework.messaging*;resolution:=optional,
org.springframework.web*;resolution:=optional,
org.springframework.security.ldap*;resolution:=optional,
org.springframework.security.messaging*;resolution:=optional,
org.springframework.security.saml2*;resolution:=optional,
org.springframework.security.oauth2*;resolution:=optional,
org.springframework.security.openid*;resolution:=optional,
org.springframework.security.rsocket*;resolution:=optional,
org.springframework.security.web*;resolution:=optional,
*</servicemix.osgi.import.pkg>
</properties>
</project>
|