<?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>parent</artifactId>
    <groupId>org.apache.aries</groupId>
    <version>2.0.0</version>
    <relativePath>../../parent/pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.apache.aries.blueprint</groupId>
  <artifactId>org.apache.aries.blueprint.noosgi</artifactId>
  <name>Apache Aries Blueprint no-OSGI</name>
  <version>1.1.1</version>
  <description>This jar contains everything needed to run Blueprint outside OSGi.</description>
  <scm>
    <connection>scm:svn:http://svn.apache.org/repos/asf/aries/tags/org.apache.aries.blueprint.noosgi-1.1.1</connection>
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/aries/tags/org.apache.aries.blueprint.noosgi-1.1.1</developerConnection>
    <url>http://svn.apache.org/viewvc/aries/tags/org.apache.aries.blueprint.noosgi-1.1.1</url>
  </scm>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <filters>
                <filter>
                  <artifact>org.apache.aries.blueprint:org.apache.aries.blueprint.core</artifact>
                  <excludes>
                    <exclude>org/apache/aries/blueprint/container/AbstractServiceReferenceRecipe*.class</exclude>
                    <exclude>org/apache/aries/blueprint/container/BlueprintContainerImpl*.class</exclude>
                    <exclude>org/apache/aries/blueprint/container/BlueprintEventDispatcher*.class</exclude>
                    <exclude>org/apache/aries/blueprint/container/BlueprintExtender*.class</exclude>
                    <exclude>org/apache/aries/blueprint/container/BlueprintQuiesceParticipant*.class</exclude>
                    <exclude>org/apache/aries/blueprint/container/BlueprintThreadFactory*.class</exclude>
                    <exclude>org/apache/aries/blueprint/container/GenericType*.class</exclude>
                    <exclude>org/apache/aries/blueprint/container/NamespaceHandlerRegistry*.class</exclude>
                    <exclude>org/apache/aries/blueprint/container/ParserServiceImpl*.class</exclude>
                    <exclude>org/apache/aries/blueprint/container/QuiesceInterceptor*.class</exclude>
                    <exclude>org/apache/aries/blueprint/container/ReferenceListRecipe*.class</exclude>
                    <exclude>org/apache/aries/blueprint/container/ReferenceRecipe*.class</exclude>
                    <exclude>org/apache/aries/blueprint/container/SatisfiableRecipe*.class</exclude>
                    <exclude>org/apache/aries/blueprint/container/ServiceRecipe*.class</exclude>
                    <exclude>org/apache/aries/blueprint/ext/AbstractPropertyPlaceholder$LateBindingValueMetadata.class</exclude>
                    <exclude>org/apache/aries/blueprint/ext/AbstractPropertyPlaceholder.class</exclude>
                    <exclude>org/apache/aries/blueprint/services/ExtendedBlueprintContainer.class</exclude>
                    <exclude>org/apache/aries/blueprint/namespace/**</exclude>
                    <exclude>org/apache/aries/blueprint/utils/ServiceListener.class</exclude>
                    <exclude>org/apache/aries/blueprint/utils/threading/**</exclude>
                  </excludes>
                </filter>
                <filter>
                  <artifact>org.apache.aries.proxy:org.apache.aries.proxy.api</artifact>
                  <excludes>
                    <exclude>org/apache/aries/proxy/weavinghook/**</exclude>
                  </excludes>
                </filter>
              </filters>
              <createSourcesJar>${createSourcesJar}</createSourcesJar>
              <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
              <createDependencyReducedPom>true</createDependencyReducedPom>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>dev</id>
      <properties>
        <blueprint.core.version>1.4.4-SNAPSHOT</blueprint.core.version>
        <blueprint.api.version>1.0.2-SNAPSHOT</blueprint.api.version>
        <blueprint.parser.version>1.3.2-SNAPSHOT</blueprint.parser.version>
      </properties>
    </profile>
    <profile>
      <id>apache-release</id>
      <properties>
        <createSourcesJar>true</createSourcesJar>
      </properties>
    </profile>
  </profiles>
  <properties>
    <blueprint.core.version>1.4.3</blueprint.core.version>
    <blueprint.api.version>1.0.1</blueprint.api.version>
    <proxy.impl.version>1.0.3</proxy.impl.version>
    <blueprint.parser.version>1.3.1</blueprint.parser.version>
  </properties>
</project>

