Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.10-1.4.0.pom ============================================================================== --- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.10-1.4.0.pom (added) +++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.10-1.4.0.pom Fri Jun 22 13:41:34 2018 @@ -0,0 +1,253 @@ +<?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</artifactId> + <version>30</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.10-1.4.0</version> + <packaging>bundle</packaging> + + <name>Apache Sling Scripting HTL Integration Tests 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://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-scripting-sightly-testing-content.git</url> + <tag>org.apache.sling.scripting.sightly.testing-content-1.0.10-1.4.0</tag> + </scm> + + + <!-- ======================================================================= --> + <!-- 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> + <version>1.4.0</version> + <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> + <version>2.7</version> + <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.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <instructions> + <Import-Package> + javax.inject;version=1.0.0, + * + </Import-Package> + <Sling-Initial-Content>SLING-INF;uninstall:=true;ignoreImportProviders:=jar</Sling-Initial-Content> + <Sling-Model-Packages>org.apache.sling.scripting.sightly.testing.models</Sling-Model-Packages> + <Require-Capability>io.sightly; filter:="(&(version>=1.0)(!(version>=2.0)))"</Require-Capability> + </instructions> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.sling</groupId> + <artifactId>maven-sling-plugin</artifactId> + <configuration> + <failOnError>true</failOnError> + </configuration> + </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>org.apache.felix</groupId> + <artifactId>maven-scr-plugin</artifactId> + <dependencies> + <dependency> + <groupId>javax.jcr</groupId> + <artifactId>jcr</artifactId> + <version>2.0</version> + </dependency> + </dependencies> + </plugin> + </plugins> + </build> + + <repositories> + <repository> + <id>oss-sonatype</id> + <name>OSS Sonatype</name> + <url>https://oss.sonatype.org/content/repositories/snapshots</url> + </repository> + </repositories> + + <dependencies> + <!-- Test bundle dependencies --> + <dependency> + <groupId>org.apache.felix</groupId> + <artifactId>org.apache.felix.scr.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> + <version>1</version> + <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.compiler.java</artifactId> + <version>1.0.24-1.4.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.scripting.sightly</artifactId> + <version>1.0.54-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>
Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.10-1.4.0.pom.asc ============================================================================== --- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.10-1.4.0.pom.asc (added) +++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.10-1.4.0.pom.asc Fri Jun 22 13:41:34 2018 @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCAAdFiEEcT4CQ0LcQDURXubcnd0BNZZEeNMFAlso5SAACgkQnd0BNZZE +eNN6mxAAzmMeoAyF7FGpEewiP6veWt7+l7Bg4053Z56dM4uX6TYmEcnn96Fyp/1t +RPt8oa4f//PtUqaaozINrYnrvpmPKffcynIhKFVYJg23wQeKCYO5RHse7JnP9iFi +lV0/iVAvX2dFpbVMvTiZ8tblQcrPMPU1XrN4ndMD6GnIHF3IHl+4Ospuh5G4P2ux +A/yZztLH2ev6ZUPUhgd4EOaQMQJBHD6FIiSo39Ng5XrSzmVMQyRfoKRf7whXvUVv +VWp80Ac+G4wppnXtbDoU4i395rM4l2O1gLSw8r837KH77Zi/I0owwZvXVtchH6OX +JMMS/3s7EAVHw+Bu1+ypkIXvAeIIPrTgh7bP+O4RS7YP/qTn47Jp3MTvnemwOfQV +9jkg/ZqNmLXXHkligzaRXd5wFX/deWhgoSzRDO8D+fIifCbeQFXVvMr+ErwIfQZ8 +caZPlGysGgGvwgh0qntke9d0mKdRzZt9vsV5TJMzeFpW0pctCulXer8NpvkKwJFe +xMKXVuTxTabVMpWuvvuibN9lHf+Y98D7ar2o2PMVdxQ524llKlbVbm0UpRr6AbQe +qas7qiA0qXQkC1t22vBWi3HrCFaMCS+O80xrYxwS+HjsH8bBiLlNCYBuNCIRxPXp +W9zIDmDB2lLpWQtASEs9Go5P5QFY4epYseKUPd7j/hZh/nBfnh4= +=foGq +-----END PGP SIGNATURE----- Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.10-1.4.0.pom.md5 ============================================================================== --- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.10-1.4.0.pom.md5 (added) +++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.10-1.4.0.pom.md5 Fri Jun 22 13:41:34 2018 @@ -0,0 +1 @@ +362cc038a82f32f1ae5dba2f1af8cf3e \ No newline at end of file Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.10-1.4.0.pom.sha1 ============================================================================== --- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.10-1.4.0.pom.sha1 (added) +++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.10-1.4.0.pom.sha1 Fri Jun 22 13:41:34 2018 @@ -0,0 +1 @@ +a12dda9bb5047c4fd6f45937348128e266eb00ca \ No newline at end of file
