<?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>sling-bundle-parent</artifactId> <groupId>org.apache.sling</groupId> <version>60</version> <relativePath>pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>org.apache.sling.testing.sling-mock-oak</artifactId> <name>Apache Sling Testing Sling Mock Oak</name> <version>4.0.0-1.62.0</version> <description>Implements a resource resolver type for Jackrabbit Oak that can be used in unit tests based on Sling Mocks.</description> <scm> <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-sling-mock-oak.git</connection> <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-sling-mock-oak.git</developerConnection> <tag>org.apache.sling.testing.sling-mock-oak-4.0.0-1.62.0</tag> <url>https://github.com/apache/sling-org-apache-sling-testing-sling-mock-oak.git</url> </scm> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-maven-plugin</artifactId> </plugin> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-baseline-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <artifactSet> <includes> <include>org.apache.jackrabbit:*</include> </includes> </artifactSet> <createSourcesJar>true</createSourcesJar> </configuration> </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <configuration> <excludes> <exclude>dependency-reduced-pom.xml</exclude> <exclude>src/test/resources/**</exclude> <exclude>src/main/resources/**</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <dependencies> <dependency> <groupId>io.wcm.maven.release-policies</groupId> <artifactId>io.wcm.maven.release-policies.oddeven-with-suffix-version</artifactId> <version>1.0.4</version> </dependency> </dependencies> <configuration> <projectVersionPolicyId>VersionWithSuffixVersionVersionPolicy</projectVersionPolicyId> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.annotation.versioning</artifactId> <version>1.1.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.component.annotations</artifactId> <version>1.4.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.testing.sling-mock.core</artifactId> <version>3.5.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.testing.sling-mock.core</artifactId> <version>3.5.0</version> <classifier>tests</classifier> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.testing.sling-mock.junit4</artifactId> <version>3.5.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>org.apache.sling.testing.osgi-mock.junit4</artifactId> <groupId>org.apache.sling</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>javax.jcr</groupId> <artifactId>jcr</artifactId> <version>2.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>23.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.8.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.testing.logging-mock</artifactId> <version>2.0.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>slf4j-simple</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-annotation_1.3_spec</artifactId> <version>1.0</version> <scope>test</scope> </dependency> </dependencies> <properties> <oak.version>1.62.0</oak.version> <sling-mock.version>3.5.0</sling-mock.version> <jackrabbit.version>2.20.15</jackrabbit.version> <project.build.outputTimestamp>2024-04-17T18:22:35Z</project.build.outputTimestamp> </properties> </project>