<?xml version="1.0"?> <!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~ Licensed to the Apache Software Foundation (ASF) under one ~ or more contributor license agreements. See the NOTICE file ~ distributed with this work for additional information ~ regarding copyright ownership. The ASF licenses this file ~ to you under the Apache License, Version 2.0 (the ~ "License"); you may not use this file except in compliance ~ with the License. You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations ~ under the License. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--> <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"> <modelVersion>4.0.0</modelVersion> <!-- ======================================================================= --> <!-- P A R E N T P R O J E C T --> <!-- ======================================================================= --> <parent> <groupId>org.apache.sling</groupId> <artifactId>sling-bundle-parent</artifactId> <version>44</version> <relativePath /> </parent> <!-- ======================================================================= --> <!-- P R O J E C T --> <!-- ======================================================================= --> <artifactId>org.apache.sling.scripting.sightly.testing-content</artifactId> <!-- The versioning scheme defined here corresponds to SLING-7406 (<module_version>-<htl_specification_version>). Take care when releasing to only increase the first part, unless the module provides support for a newer version of the HTL specification. --> <version>1.0.34-1.4.0</version> <name>Apache Sling Scripting HTL Testing Content</name> <description> This bundle contains: - Content adapted from the Adobe HTL TCK meant to test the org.apache.sling.scripting.HTL implementations. - Content meant to test performance of the org.apache.sling.scripting.HTL implementation. </description> <scm> <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly-testing-content.git</connection> <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly-testing-content.git</developerConnection> <url>https://github.com/apache/sling-org-apache-sling-scripting-sightly-testing-content.git</url> <tag>org.apache.sling.scripting.sightly.testing-content-1.0.34-1.4.0</tag> </scm> <properties> <project.build.outputTimestamp>2024-07-17T13:22:08Z</project.build.outputTimestamp> </properties> <!-- ======================================================================= --> <!-- B U I L D --> <!-- ======================================================================= --> <build> <resources> <resource> <directory>${basedir}/src/main/resources</directory> </resource> <resource> <directory>${project.build.outputDirectory}/SLING-INF/sightlytck</directory> <targetPath>SLING-INF/sightlytck</targetPath> </resource> </resources> <pluginManagement> <plugins> <plugin> <!-- Extend RAT configuration from parent pom --> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <configuration> <excludes combine.children="append"> <exclude>src/main/resources/SLING-INF/**/*.json</exclude> <exclude>src/main/resources/SLING-INF/**/*.ecma</exclude> <!-- Ignore files generated bei IDE plugins e.g. maven-eclipse-plugin --> <exclude>maven-eclipse.xml</exclude> <exclude>.*</exclude> <exclude>.*/**</exclude> </excludes> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack</id> <phase>generate-resources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>io.sightly</groupId> <artifactId>io.sightly.tck</artifactId> <type>jar</type> <outputDirectory>${project.build.directory}/sightlytck/</outputDirectory> <includes>**/*.html,**/*.js,**/*.java</includes> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-resources</id> <phase>generate-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.outputDirectory}/SLING-INF/sightlytck/scripts</outputDirectory> <resources> <resource> <directory>${project.build.directory}/sightlytck/testfiles/scripts/</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jslint-maven-plugin</artifactId> <version>1.0.1</version> <configuration> <sourceJsFolder>${basedir}/src/main/resources/SLING-INF</sourceJsFolder> <includes> <include>**/*.json</include> </includes> <encoding>UTF-8</encoding> </configuration> <executions> <execution> <goals> <goal>jslint</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-baseline-maven-plugin</artifactId> <executions> <execution> <id>bnd-baseline</id> <goals> <goal>baseline</goal> </goals> <configuration> <diffignores> <diffignore>Bundle-Version</diffignore> </diffignores> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <!-- Test bundle dependencies --> <dependency> <groupId>io.sightly</groupId> <artifactId>io.sightly.tck</artifactId> <version>1.4.5</version> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.annotation.versioning</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.component.annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.models.api</artifactId> <version>1.2.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.api</artifactId> <version>2.1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.scripting.sightly.runtime</artifactId> <version>1.1.0-1.4.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.commons.osgi</artifactId> <version>2.4.0</version> <scope>provided</scope> </dependency> </dependencies> </project>