This is an automated email from the ASF dual-hosted git repository. dklco pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-thumbnails.git
commit d2799581d1be0ea3ef52716db1d7fef0198d2a98 Author: Dan Klco <[email protected]> AuthorDate: Thu Oct 19 17:05:50 2023 -0400 SLING-12110 - Updating to latest sling parent and fixing POM issues detected --- pom.xml | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/pom.xml b/pom.xml index e5eded3..edd37cd 100644 --- a/pom.xml +++ b/pom.xml @@ -5,11 +5,12 @@ 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> <parent> <artifactId>sling-bundle-parent</artifactId> <groupId>org.apache.sling</groupId> - <version>43</version> + <version>52</version> </parent> <artifactId>org.apache.sling.thumbnails</artifactId> <name>Apache Sling Thumbnail Support</name> @@ -20,7 +21,6 @@ <sling.java.version>8</sling.java.version> </properties> - <scm> <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-thumbnails.git</connection> <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-thumbnails.git</developerConnection> @@ -147,6 +147,12 @@ <version>4.3.8</version> <scope>provided</scope> </dependency> + <dependency> + <groupId>javax.jcr</groupId> + <artifactId>jcr</artifactId> + <version>2.0</version> + <scope>provided</scope> + </dependency> <dependency> <groupId>org.apache.jackrabbit</groupId> <artifactId>jackrabbit-jcr-commons</artifactId> @@ -185,19 +191,20 @@ </dependency> <dependency> <groupId>org.osgi</groupId> - <artifactId>osgi.core</artifactId> - <version>6.0.0</version> + <artifactId>org.osgi.framework</artifactId> + <version>1.10.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> - <artifactId>osgi.cmpn</artifactId> - <version>6.0.0</version> + <artifactId>org.osgi.service.event</artifactId> + <version>1.4.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> + <scope>provided</scope> </dependency> <!-- Sling Dependencies --> @@ -239,12 +246,6 @@ <version>2.6</version> <scope>provided</scope> </dependency> - <dependency> - <groupId>com.google.guava</groupId> - <artifactId>guava</artifactId> - <version>15.0</version> - <scope>provided</scope> - </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> @@ -269,6 +270,7 @@ <groupId>net.coobird</groupId> <artifactId>thumbnailator</artifactId> <version>0.4.14</version> + <scope>compile</scope> </dependency> <dependency> <artifactId>pdfbox</artifactId> @@ -299,6 +301,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> @@ -315,6 +318,7 @@ <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId>
