This is an automated email from the ASF dual-hosted git repository. olli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-paxexam.git
commit d751b915acb0818a0558aca69912d47d16ddea02 Author: Oliver Lietz <[email protected]> AuthorDate: Sat Aug 27 13:21:03 2022 +0200 SLING-11561 Update to Sling Bundle Parent 49 * add required dependency scopes * remove redundant build plugins --- pom.xml | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/pom.xml b/pom.xml index 5e89ed2..b6b4c73 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.sling</groupId> <artifactId>sling-bundle-parent</artifactId> - <version>48</version> + <version>49</version> <relativePath /> </parent> @@ -50,14 +50,6 @@ <build> <plugins> - <plugin> - <groupId>biz.aQute.bnd</groupId> - <artifactId>bnd-maven-plugin</artifactId> - </plugin> - <plugin> - <groupId>biz.aQute.bnd</groupId> - <artifactId>bnd-baseline-maven-plugin</artifactId> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> @@ -106,13 +98,14 @@ <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.framework</artifactId> - <version>7.0.5</version> <scope>test</scope> + <version>7.0.5</version> </dependency> <!-- OPS4J Pax --> <dependency> <groupId>org.ops4j.pax.tinybundles</groupId> <artifactId>tinybundles</artifactId> + <scope>provided</scope> <version>3.0.0</version> </dependency> <!-- logging --> @@ -130,36 +123,38 @@ <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam</artifactId> + <scope>provided</scope> <version>${org.ops4j.pax.exam.version}</version> </dependency> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-cm</artifactId> + <scope>provided</scope> <version>${org.ops4j.pax.exam.version}</version> </dependency> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-container-forked</artifactId> - <version>${org.ops4j.pax.exam.version}</version> <scope>test</scope> + <version>${org.ops4j.pax.exam.version}</version> </dependency> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-junit4</artifactId> - <version>${org.ops4j.pax.exam.version}</version> <scope>test</scope> + <version>${org.ops4j.pax.exam.version}</version> </dependency> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-link-mvn</artifactId> - <version>${org.ops4j.pax.exam.version}</version> <scope>test</scope> + <version>${org.ops4j.pax.exam.version}</version> </dependency> <dependency> <groupId>org.ops4j.pax.url</groupId> <artifactId>pax-url-wrap</artifactId> - <version>2.6.11</version> <scope>test</scope> + <version>2.6.11</version> </dependency> </dependencies>
