<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.lucee</groupId>
  <artifactId>ehcache</artifactId>
  <version>2.10.9.2</version>
  <name>ehcache</name>
  <packaging>bundle</packaging>

  <description>OSGi Version of ehcache</description>
  <url>http://maven.lucee.org/ehcache/</url>

  <!-- same license as the original jar -->
  <licenses>
<license>
        <name>GNU Lesser General Public License, version 2.1</name>
        <url>https://www.gnu.org/licenses/lgpl-2.1-standalone.html</url>
    </license>
  </licenses>

  <developers>
<developer>
      <id>micstriit</id>
      <name>Michael Offner</name>
      <email>michael@lucee.org</email>
      <organization>Lucee Association Switzerland</organization>
      <organizationUrl>http://lucee.org</organizationUrl>
      <roles>
        <role>Project-Administrator</role>
        <role>Developer</role>
      </roles>
      <timezone>+1</timezone>
    </developer>
  </developers>

  <build>
    <plugins>
      <plugin>
      <groupId>org.sonatype.plugins</groupId>
      <artifactId>nexus-staging-maven-plugin</artifactId>
      <version>1.6.3</version>
      <extensions>true</extensions>
      <configuration>
        <serverId>ossrh</serverId>
        <nexusUrl>https://oss.sonatype.org/</nexusUrl>
        <autoReleaseAfterClose>true</autoReleaseAfterClose>
      </configuration>
    </plugin>

    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-gpg-plugin</artifactId>
      <version>1.5</version>
      <executions>
        <execution>
          <id>sign-artifacts</id>
          <phase>verify</phase>
          <goals>
            <goal>sign</goal>
          </goals>
        </execution>
      </executions>
    </plugin>

    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-release-plugin</artifactId>
      <version>2.5</version>
      <configuration>
        <autoVersionSubmodules>true</autoVersionSubmodules>
        <useReleaseProfile>false</useReleaseProfile>
        <releaseProfiles>release</releaseProfiles>
        <goals>deploy</goals>
      </configuration>
    </plugin>

    <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-dependency-plugin</artifactId>
         <version>2.10</version>
         <executions>
           <execution>
             <id>unpack</id>
             <phase>validate</phase>
             <goals>
               <goal>unpack</goal>
             </goals>
             <configuration>
               <artifactItems>
                 <artifactItem>
                   <groupId>net.sf.ehcache</groupId>
                    <artifactId>ehcache</artifactId>
                    <version>2.10.9.2</version>
                   <type>jar</type>
                   <overWrite>false</overWrite>
                   <outputDirectory>${project.build.directory}/classes</outputDirectory>
                 </artifactItem>
               </artifactItems>
               <overWriteReleases>true</overWriteReleases>
               <overWriteSnapshots>true</overWriteSnapshots>
             </configuration>
           </execution>
         </executions>
       </plugin>

      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>5.1.2</version>
        <configuration>
          <unpackBundle>true</unpackBundle>
          <instructions>
            <Bundle-Name>org.lucee.ehcache</Bundle-Name>
            <Bundle-SymbolicName>org.lucee.ehcache</Bundle-SymbolicName>
            <Bundle-Description>OSGI version of jar ${project.name}</Bundle-Description>
            <Export-Package>*,META-INF.services.*</Export-Package>
            <!-- <Require-Bundle></Require-Bundle> -->
            <!-- <Require-Bundle-Fragment></Require-Bundle-Fragment> -->
            <Import-Package>!weblogic.transaction,!org.jboss.vfs,!net.sf.ehcache.terracotta.security,!com.google.apphosting.api,!bitronix.tm.resource.ehcache,!org.hibernate,!org.hibernate.cache,!org.hibernate.cache.access,!org.hibernate.cfg,!org.hibernate.impl,!org.hibernate.stat,!org.hibernate.transaction,!org.slf4j,!javax.transaction.xa,!org.quartz,!org.quartz.impl,!org.quartz.impl.jdbcjobstore,!org.quartz.impl.matchers,!org.quartz.simpl,!org.terracotta.quartz,!org.terracotta.toolkit,!org.terracotta.toolkit.atomic,!org.terracotta.toolkit.builder,!org.terracotta.toolkit.cache,!org.terracotta.toolkit.cluster,!org.terracotta.toolkit.collections,!org.terracotta.toolkit.concurrent.locks,!org.terracotta.toolkit.config,!org.terracotta.toolkit.events,!org.terracotta.toolkit.feature,!org.terracotta.toolkit.internal,!org.terracotta.toolkit.internal.cache,!org.terracotta.toolkit.internal.cluster,!org.terracotta.toolkit.internal.collections,!org.terracotta.toolkit.internal.concurrent.locks,!org.terracotta.toolkit.internal.feature,!org.terracotta.toolkit.monitoring,!org.terracotta.toolkit.nonstop,!org.terracotta.toolkit.rejoin,!org.terracotta.toolkit.search,!org.terracotta.toolkit.search.attribute,!org.terracotta.toolkit.store,*</Import-Package>
            <DynamicImport-Package>weblogic.transaction,org.jboss.vfs,net.sf.ehcache.terracotta.security,com.google.apphosting.api,bitronix.tm.resource.ehcache,org.hibernate,org.hibernate.cache,org.hibernate.cache.access,org.hibernate.cfg,org.hibernate.impl,org.hibernate.stat,org.hibernate.transaction,org.slf4j,javax.transaction.xa,org.quartz,org.quartz.impl,org.quartz.impl.jdbcjobstore,org.quartz.impl.matchers,org.quartz.simpl,org.terracotta.quartz,org.terracotta.toolkit,org.terracotta.toolkit.atomic,org.terracotta.toolkit.builder,org.terracotta.toolkit.cache,org.terracotta.toolkit.cluster,org.terracotta.toolkit.collections,org.terracotta.toolkit.concurrent.locks,org.terracotta.toolkit.config,org.terracotta.toolkit.events,org.terracotta.toolkit.feature,org.terracotta.toolkit.internal,org.terracotta.toolkit.internal.cache,org.terracotta.toolkit.internal.cluster,org.terracotta.toolkit.internal.collections,org.terracotta.toolkit.internal.concurrent.locks,org.terracotta.toolkit.internal.feature,org.terracotta.toolkit.monitoring,org.terracotta.toolkit.nonstop,org.terracotta.toolkit.rejoin,org.terracotta.toolkit.search,org.terracotta.toolkit.search.attribute,org.terracotta.toolkit.store</DynamicImport-Package>
            <!-- <Fragment-Host></Fragment-Host> -->
            <Implementation-URL>http&#x3a;&#x2f;&#x2f;ehcache.org</Implementation-URL>
						<Terracotta-ProjectStatus>Supported</Terracotta-ProjectStatus>
						<Bundle-DocURL>http&#x3a;&#x2f;&#x2f;www.terracotta.org</Bundle-DocURL>
						<Require-Capability>osgi.ee&#x3b;filter&#x3a;&#x3d;&#x22;&#x28;&#x26;&#x28;osgi.ee&#x3d;JavaSE&#x29;&#x28;version&#x3d;1.8&#x29;&#x29;&#x22;</Require-Capability>
						<Manifest-Version>1.0</Manifest-Version>
						<License>Apache Software License, Version 2.0</License>
						<Implementation-Vendor-Id>net.sf.ehcache</Implementation-Vendor-Id>
						<Implementation-Vendor>Terracotta, Inc.</Implementation-Vendor>
						<BuildInfo-URL>https&#x3a;&#x2f;&#x2f;svn.terracotta.org&#x2f;repo&#x2f;ehcache&#x2f;tags&#x2f;ehcache-2.10.9.2</BuildInfo-URL>
						<Terracotta-Name>ehcache</Terracotta-Name>
						<Tool>Bnd-4.2.0.201903051501</Tool>
						<Bundle-Description>Ehcache is an open source, standards-based cache used to boost performance,  offload the database and simplify scalability. Ehcache is robust, proven and full-featured and  this has made it the most widely-used Java-based cache.</Bundle-Description>
						<Ant-Version>Apache Ant 1.9.4</Ant-Version>
						<Implementation-Version>2.10.9.2</Implementation-Version>
						<Bundle-RequiredExecutionEnvironment>JavaSE-1.8</Bundle-RequiredExecutionEnvironment>
						<BuildInfo-Revision>11541</BuildInfo-Revision>
						<Created-By>Apache Maven Bundle Plugin</Created-By>
						<Bundle-Vendor>Terracotta, Inc.</Bundle-Vendor>
						<Built-By>jenkins-slave</Built-By>
						<Bundle-License>src&#x2f;assemble&#x2f;EHCACHE-CORE-LICENSE.txt</Bundle-License>
						<Bnd-LastModified>1619228673735</Bnd-LastModified>
						<Build-Jdk>1.8.0_231</Build-Jdk>
						<Terracotta-Description>Ehcache is an open source, standards-based cache used to boost performance, offload the database and simplify scalability. Ehcache is robust, proven and full-featured and this has made it the most widely-used Java-based cache.</Terracotta-Description>
						<Implementation-Title>ehcache</Implementation-Title>
						<BuildInfo-Timestamp>20210424-014428</BuildInfo-Timestamp>
            <!-- Embed Dependency -->
          </instructions>
        </configuration>
        <extensions>true</extensions>
      </plugin>


    </plugins>
  </build>


  <scm>
    <url>https://github.com/lucee/osgi-bundle-ehcache</url>
    <connection>scm:git:git://github.com/lucee/osgi-bundle-ehcache.git</connection>
    <developerConnection>scm:git:git@github.com:lucee/osgi-bundle-ehcache.git</developerConnection>
    <tag>ehcache OSGi library</tag>
  </scm>

  <distributionManagement>
    <repository>
    <id>ossrh</id>
    <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  </repository>
    <snapshotRepository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
  </distributionManagement>

</project>