<?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>camel-quarkus-support-spring-shade</artifactId>
    <groupId>org.apache.camel.quarkus</groupId>
    <version>3.8.2</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>camel-quarkus-support-spring-context</artifactId>
  <name>Camel Quarkus :: Support :: Spring :: Context</name>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <createSourcesJar>true</createSourcesJar>
              <artifactSet>
                <includes>
                  <include>org.springframework:spring-context</include>
                </includes>
              </artifactSet>
              <filters>
                <filter>
                  <artifact>org.springframework:spring-context</artifact>
                  <includes>
                    <include>org/springframework/context/*</include>
                    <include>org/springframework/context/event/**</include>
                    <include>org/springframework/context/expression/**</include>
                    <include>org/springframework/context/support/**</include>
                    <include>org/springframework/context/weaving/**</include>
                    <include>org/springframework/jndi/JndiCallback**</include>
                    <include>org/springframework/jndi/JndiTemplate.**</include>
                    <include>org/springframework/jndi/TypeMismatchNamingException**</include>
                    <include>org/springframework/remoting/rmi/CodebaseAwareObjectInputStream**</include>
                    <include>org/springframework/scheduling/**</include>
                  </includes>
                </filter>
              </filters>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.apache.camel.quarkus</groupId>
      <artifactId>camel-quarkus-support-spring-beans</artifactId>
      <version>3.8.2</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.camel.quarkus</groupId>
      <artifactId>camel-quarkus-support-spring-core</artifactId>
      <version>3.8.2</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>
