This is an automated email from the ASF dual-hosted git repository.
tabish pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git
The following commit(s) were added to refs/heads/main by this push:
new 00d61517 PROTON-2626 Remove bundle packaging from the engine pom
00d61517 is described below
commit 00d61517408785df53dbc245c03704d91bfe7910
Author: Timothy Bish <[email protected]>
AuthorDate: Wed Oct 19 11:49:47 2022 -0400
PROTON-2626 Remove bundle packaging from the engine pom
Switch to Jar as packaging for the engine.
---
pom.xml | 36 ------------------------------------
protonj2/pom.xml | 14 +-------------
2 files changed, 1 insertion(+), 49 deletions(-)
diff --git a/pom.xml b/pom.xml
index 69a1c5ef..f5fa607b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -51,7 +51,6 @@
<netty.tcnative.version>2.0.54.Final</netty.tcnative.version>
<!-- Plugin versions -->
- <maven.bundle.plugin.version>5.1.1</maven.bundle.plugin.version>
<jacoco.plugin.version>0.8.8</jacoco.plugin.version>
<!-- Test properties -->
@@ -220,17 +219,6 @@
<showWarnings>true</showWarnings>
</configuration>
</plugin>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <version>${maven.bundle.plugin.version}</version>
- <extensions>true</extensions>
- <configuration>
- <instructions>
- <Export-Package>${project.groupId}.protonj2.*</Export-Package>
- </instructions>
- </configuration>
- </plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
@@ -285,30 +273,6 @@
</configuration>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself.-->
- <plugin>
- <groupId>org.eclipse.m2e</groupId>
- <artifactId>lifecycle-mapping</artifactId>
- <version>1.0.0</version>
- <configuration>
- <lifecycleMappingMetadata>
- <pluginExecutions>
- <pluginExecution>
- <pluginExecutionFilter>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <versionRange>[2.4.0,)</versionRange>
- <goals>
- <goal>manifest</goal>
- </goals>
- </pluginExecutionFilter>
- <action>
- <ignore />
- </action>
- </pluginExecution>
- </pluginExecutions>
- </lifecycleMappingMetadata>
- </configuration>
- </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
diff --git a/protonj2/pom.xml b/protonj2/pom.xml
index b026cd9a..37057729 100644
--- a/protonj2/pom.xml
+++ b/protonj2/pom.xml
@@ -26,7 +26,7 @@
<artifactId>protonj2</artifactId>
<name>Qpid ProtonJ2 AMQP Protocol Library</name>
<description>AMQP 1.0 protocol engine and codec library</description>
- <packaging>bundle</packaging>
+ <packaging>jar</packaging>
<dependencies>
<dependency>
@@ -103,18 +103,6 @@
</resource>
</resources>
<plugins>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <version>${maven.bundle.plugin.version}</version>
- <configuration>
- <instructions>
- <Import-Package>
- *
- </Import-Package>
- </instructions>
- </configuration>
- </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]