You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ra...@apache.org on 2021/05/11 12:31:32 UTC

svn commit: r47622 [3/3] - /release/sling/

Added: release/sling/scriptingbundle-maven-plugin-0.3.0.pom
==============================================================================
--- release/sling/scriptingbundle-maven-plugin-0.3.0.pom (added)
+++ release/sling/scriptingbundle-maven-plugin-0.3.0.pom Tue May 11 12:31:32 2021
@@ -0,0 +1,265 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+  ~ 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/xsd/maven-4.0.0.xsd">
+
+    <parent>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>41</version>
+        <relativePath />
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+
+    <artifactId>scriptingbundle-maven-plugin</artifactId>
+    <version>0.3.0</version>
+    <packaging>maven-plugin</packaging>
+
+    <name>Apache Sling Scripting Bundle Maven Plugin</name>
+    <description>The Apache Sling Scripting Bundle Maven Plugin provides support for packing server-side scripts as bundle
+        entries (directly embedded or compiled as Java classes). When executed, the plugin will define two system properties
+        which can be used to populate the Provide-Capability and Require-Capability bundle headers.</description>
+    <url>https://sling.apache.org/components/scriptingbundle-maven-plugin/</url>
+
+    <scm>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-scriptingbundle-maven-plugin.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-scriptingbundle-maven-plugin.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=sling-scriptingbundle-maven-plugin.git</url>
+        <tag>scriptingbundle-maven-plugin-0.3.0</tag>
+    </scm>
+
+    <properties>
+        <sling.java.version>8</sling.java.version>
+        <maven.version>3.6.0</maven.version>
+        <site.jira.version.id>12344664,12347157,12348422,12350010</site.jira.version.id>
+        <maven.site.path>${project.artifactId}-archives/${project.artifactId}-LATEST</maven.site.path>
+    </properties>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <version>${maven.version}</version>
+                <executions>
+                    <execution>
+                        <id>mojo-descriptor</id>
+                        <phase>process-classes</phase>
+                        <goals>
+                            <goal>descriptor</goal>
+                        </goals>
+                    </execution>
+                    <execution>
+                        <id>generated-helpmojo</id>
+                        <goals>
+                            <goal>helpmojo</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.plexus</groupId>
+                <artifactId>plexus-component-metadata</artifactId>
+                <version>2.1.0</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>generate-metadata</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/*.iml</exclude>
+                        <exclude>**/target/**/*</exclude>
+                        <exclude>src/site/markdown/**</exclude>
+                        <exclude>src/test/resources/**/extends</exclude>
+                        <exclude>src/test/resources/**/requires</exclude>
+                        <exclude>src/test/resources/**/wrongbar</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-scm-publish-plugin</artifactId>
+                <configuration>
+                    <checkoutDirectory>${user.home}/maven-sites/${maven.site.path}</checkoutDirectory>
+                    <tryUpdate>true</tryUpdate>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>com.github.spotbugs</groupId>
+                <artifactId>spotbugs-maven-plugin</artifactId>
+                <version>3.1.12.2</version>
+                <configuration>
+                    <effort>Max</effort>
+                    <xmlOutput>true</xmlOutput>
+                    <excludeFilterFile>src/test/resources/spotbugs-exclude.xml</excludeFilterFile>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>find-bugs</id>
+                        <phase>process-classes</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
+    <!-- force maven-plugin-testing-harness to use newer plexus container (https://issues.apache.org/jira/browse/MPLUGINTESTING-53) -->
+    <dependencyManagement>
+        <dependencies>
+            <!-- maven -->
+            <dependency>
+                <groupId>org.apache.maven</groupId>
+                <artifactId>maven-core</artifactId>
+                <version>${maven.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.maven</groupId>
+                <artifactId>maven-compat</artifactId>
+                <version>${maven.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.maven</groupId>
+                <artifactId>maven-model</artifactId>
+                <version>${maven.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.maven</groupId>
+                <artifactId>maven-plugin-api</artifactId>
+                <version>${maven.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.maven</groupId>
+                <artifactId>maven-aether-provider</artifactId>
+                <version>${maven.version}</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
+
+    <dependencies>
+        <dependency>
+            <groupId>org.jetbrains</groupId>
+            <artifactId>annotations</artifactId>
+        </dependency>
+
+        <dependency>
+          <groupId>org.apache.maven</groupId>
+          <artifactId>maven-plugin-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-model</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-compat</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven.plugin-tools</groupId>
+            <artifactId>maven-plugin-annotations</artifactId>
+            <version>3.4</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.framework</artifactId>
+            <version>1.8.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.spi</artifactId>
+            <scope>compile</scope>
+            <version>1.0.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.api</artifactId>
+            <version>2.22.0</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>biz.aQute.bnd</groupId>
+            <artifactId>biz.aQute.bndlib</artifactId>
+            <version>5.3.0</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.maven.plugin-testing</groupId>
+            <artifactId>maven-plugin-testing-harness</artifactId>
+            <version>3.3.0</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.sonatype.plexus</groupId>
+            <artifactId>plexus-build-api</artifactId>
+            <version>0.0.7</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <version>3.6.28</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-changes-plugin</artifactId>
+                <configuration>
+                    <useJql>true</useJql>
+                    <sortColumnNames>resolutiondate DESC</sortColumnNames>
+                    <columnNames>Type,Key,Summary,Fix Version</columnNames>
+                    <resolutionIds>Fixed</resolutionIds>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+
+</project>

Added: release/sling/scriptingbundle-maven-plugin-0.3.0.pom.asc
==============================================================================
--- release/sling/scriptingbundle-maven-plugin-0.3.0.pom.asc (added)
+++ release/sling/scriptingbundle-maven-plugin-0.3.0.pom.asc Tue May 11 12:31:32 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEcT4CQ0LcQDURXubcnd0BNZZEeNMFAmCVC+8ACgkQnd0BNZZE
+eNMs4g/+J7D9QJ64Fn8czcfHpxgMei6Kxhx56pRnIuB5DREjUsK8aww+O8BY+tte
+c1N9Zhcoq28zxWCwz5D9RWZsd9fxVdey2VJJ53LAY/GUhYufC3DINJgYO2ZMr1wp
+kQr8sVuebrd3XLnCtjsY8Fp/IiCJJtSAoS1pqegxgXvTaVw6XsXVxIHZC5JxwSGs
+5rXAQw+SXJD3/fZ3SGscwjIT/sdrc5gCxuKAiWXdfPnJT/kFfD30JhO9nmwI66O+
+JqCWSW9lMg6HEQ3qAVGD8b0RFqBGAwgYyPfHsrVTEqXnfaAAQrlKSvLzw9U+2+r2
+PNKYFecLQHnQUqSoqC3UF/K6bAWSrLtDHoa7hcAfK5CnaUbv6viNcmnrbzODYYly
+D2n6cVFP8trbjGkD8O3rpS9F1YFaulhbN/iTrAHA3erf76tASce90eQjnGUlAFcH
+dhs1anBhSwEsgXjfdoUHXtCmxaYQIBKUPyOePuAQbv+0zYd6/Xv3rwiA3vu15Jme
+YrpSzgZrgXbGRCsXw89qqlgLd+dsIYmygQvCDAEeQsDUlfPZMoF0PdBpbx1gJLNx
+RLXsV0vXNtK9UiWzwGx8F3WAFy8IMzDefsw6ERJ7+BzM4Cj3gEcZ8w7fQ0Xdh+Rn
+s6xamK4J+rGOtJQ3jqpXjMO2c1qmnOyv4okKs2znciIMK72Go50=
+=qZwO
+-----END PGP SIGNATURE-----

Added: release/sling/scriptingbundle-maven-plugin-0.3.0.pom.md5
==============================================================================
--- release/sling/scriptingbundle-maven-plugin-0.3.0.pom.md5 (added)
+++ release/sling/scriptingbundle-maven-plugin-0.3.0.pom.md5 Tue May 11 12:31:32 2021
@@ -0,0 +1 @@
+1190e1b72d7f04a9b4fb29520b5ca728
\ No newline at end of file

Added: release/sling/scriptingbundle-maven-plugin-0.3.0.pom.sha1
==============================================================================
--- release/sling/scriptingbundle-maven-plugin-0.3.0.pom.sha1 (added)
+++ release/sling/scriptingbundle-maven-plugin-0.3.0.pom.sha1 Tue May 11 12:31:32 2021
@@ -0,0 +1 @@
+cba08d1272d8aee0b0f508c3726e7f0df052925f
\ No newline at end of file