You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2022/09/06 13:53:53 UTC

[tomcat-jakartaee-migration] branch main updated: Disable the default ASF source packaging

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat-jakartaee-migration.git


The following commit(s) were added to refs/heads/main by this push:
     new d781299  Disable the default ASF source packaging
d781299 is described below

commit d781299f3061fbf1260c285e77fdb6d2e4b7f065
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Tue Sep 6 14:53:47 2022 +0100

    Disable the default ASF source packaging
    
    With help from:
    - Han Li
    - https://issues.apache.org/jira/browse/FLINK-16879
---
 CHANGES.md |  3 ++-
 pom.xml    | 25 +++++++++++++++++++++++++
 2 files changed, 27 insertions(+), 1 deletion(-)

diff --git a/CHANGES.md b/CHANGES.md
index 9195b3d..3b162bd 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -2,7 +2,8 @@
 
 ## 1.0.3 (in progress)
 
-- Fix [#32](https://github.com/apache/tomcat-jakartaee-migration/issues/32) handle conversion of manifests in exploded JARs. PR by wmccusker/ (markt
+- Fix [#32](https://github.com/apache/tomcat-jakartaee-migration/issues/32) handle conversion of manifests in exploded JARs. PR by wmccusker/ (markt)
+- Fix unexpected generation of bz2 source archive is Maven distribution
 
 ## 1.0.2 (not released)
 
diff --git a/pom.xml b/pom.xml
index e1b44bf..4a4eb89 100644
--- a/pom.xml
+++ b/pom.xml
@@ -105,6 +105,31 @@
     </dependency>
   </dependencies>
 
+  <profiles>
+    <!-- Customise the default ASF release profile -->
+    <profile>
+      <id>apache-release</id>
+      <build>
+        <plugins>
+          <!--
+            Disable the default src packaging. Project specific src packaging is
+            provided under the ID 'make-assembly' below.
+          -->
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>source-release-assembly</id>
+                <phase>none</phase>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+  
   <build>
     <resources>
       <resource>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org