<?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>quarkus-spring-api</artifactId>
    <groupId>io.quarkus</groupId>
    <version>6.2.SP1</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>io.quarkus</groupId>
  <artifactId>quarkus-spring-context-api</artifactId>
  <version>6.2.SP1</version>
  <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/cache/annotation/Cacheable**</include>
                    <include>org/springframework/cache/annotation/CacheEvict**</include>
                    <include>org/springframework/cache/annotation/CachePut**</include>
                    <include>org/springframework/context/annotation/Bean**</include>
                    <include>org/springframework/context/annotation/Configuration**</include>
                    <include>org/springframework/context/annotation/Scope**</include>
                    <include>org/springframework/stereotype/Component**</include>
                    <include>org/springframework/stereotype/Indexed**</include>
                    <include>org/springframework/stereotype/Repository**</include>
                    <include>org/springframework/stereotype/Service**</include>
                    <include>org/springframework/ui/Model**</include>
                    <include>org/springframework/scheduling/annotation/Scheduled**</include>
                    <include>org/springframework/scheduling/annotation/Schedules**</include>
                    <include>org/springframework/context/ApplicationContext**</include>
                    <include>org/springframework/context/ApplicationEvent**</include>
                    <include>org/springframework/context/ApplicationEventPublisher**</include>
                    <include>org/springframework/context/MessageSource**</include>
                    <include>org/springframework/context/NoSuchMessageException**</include>
                    <include>org/springframework/context/annotation/ScopedProxyMode**</include>
                    <include>org/springframework/ui/ModelMap**</include>
                    <include>org/springframework/stereotype/Controller**</include>
                    <include>org/springframework/context/annotation/ScopedProxyMode**</include>
                  </includes>
                </filter>
              </filters>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
