This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.hc.support-1.0.4 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-hc-support.git
commit aeee81c79cbd573d9f21f62e850677a58d8a9616 Author: Carsten Ziegeler <[email protected]> AuthorDate: Mon Aug 19 07:46:59 2013 +0000 Clean up maven pom - remove unused dependencies, wrong plugin instructions etc. git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/healthcheck/healthchecks@1515302 13f79535-47bb-0310-9956-ffa450edef68 --- pom.xml | 47 +++------------------- .../sling/hc/healthchecks/util/package-info.java | 24 +++++++++++ 2 files changed, 30 insertions(+), 41 deletions(-) diff --git a/pom.xml b/pom.xml index e0a55d1..a3c65a3 100644 --- a/pom.xml +++ b/pom.xml @@ -9,8 +9,8 @@ <parent> <groupId>org.apache.sling</groupId> <artifactId>sling</artifactId> - <version>16</version> - <relativePath>16</relativePath> + <version>17</version> + <relativePath/> </parent> <groupId>org.apache.sling</groupId> @@ -25,6 +25,9 @@ Default Sling Health Check Services </description> + <properties> + <sling.java.version>6</sling.java.version> + </properties> <build> <plugins> <plugin> @@ -35,32 +38,6 @@ <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> - <configuration> - <instructions> - <Private-Package> - org.apache.sling.hc.healthchecks.* - </Private-Package> - </instructions> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>1.6</source> - <target>1.6</target> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>animal-sniffer-maven-plugin</artifactId> - <configuration> - <signature> - <groupId>org.codehaus.mojo.signature</groupId> - <artifactId>java16</artifactId> - <version>1.0</version> - </signature> - </configuration> </plugin> </plugins> </build> @@ -69,21 +46,15 @@ <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> - <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>org.apache.felix</groupId> - <artifactId>org.apache.felix.scr.annotations</artifactId> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.hc.api</artifactId> - <version>${project.version}</version> + <version>0.0.2-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> @@ -114,29 +85,23 @@ <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.2</version> - <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> - <scope>provided</scope> </dependency> <dependency> <groupId>javax.jcr</groupId> <artifactId>jcr</artifactId> - <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.6.2</version> - <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>4.11</version> - <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> diff --git a/src/main/java/org/apache/sling/hc/healthchecks/util/package-info.java b/src/main/java/org/apache/sling/hc/healthchecks/util/package-info.java new file mode 100644 index 0000000..73b5889 --- /dev/null +++ b/src/main/java/org/apache/sling/hc/healthchecks/util/package-info.java @@ -0,0 +1,24 @@ +/* + * 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. + */ + +@Version("1.0.0") +package org.apache.sling.hc.healthchecks.util; + +import aQute.bnd.annotation.Version; + -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
