Repository: apex-core
Updated Branches:
  refs/heads/master d514859a8 -> b5ce0497e


Fix source archive name and skip deployment to Maven repo.


Project: http://git-wip-us.apache.org/repos/asf/apex-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/apex-core/commit/92897a3a
Tree: http://git-wip-us.apache.org/repos/asf/apex-core/tree/92897a3a
Diff: http://git-wip-us.apache.org/repos/asf/apex-core/diff/92897a3a

Branch: refs/heads/master
Commit: 92897a3af36adf5f1086b94bc43b35c7520c3b6f
Parents: d514859
Author: Thomas Weise <[email protected]>
Authored: Tue Dec 6 20:41:01 2016 -0800
Committer: Thomas Weise <[email protected]>
Committed: Tue Dec 6 20:41:01 2016 -0800

----------------------------------------------------------------------
 pom.xml | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/apex-core/blob/92897a3a/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index e4c57a3..4f328d9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -430,8 +430,6 @@
         
<distMgmtReleaseUrl>https://repository.apache.org/service/local/staging/deploy/maven2</distMgmtReleaseUrl>
         
<distMgmtDevUrl>file://${project.build.directory}/mvn-repo</distMgmtDevUrl>
         
<sourceReleaseAssemblyDescriptor>source-release-zip-tar</sourceReleaseAssemblyDescriptor>
-        <package.prefix>/opt/datatorrent</package.prefix>
-        <package.groupname>dtorrent</package.groupname>
       </properties>
       <distributionManagement>
         <repository>
@@ -464,12 +462,24 @@
     <profile>
       <activation>
         <file>
-          <missing>${basedir}/src/main</missing>
+          <exists>${basedir}/NOTICE</exists>
         </file>
       </activation>
       <properties>
         <remoteresources.skip>true</remoteresources.skip>
+        <!-- do not push source archives to the repo - see MPOM-90 -->
+        <assembly.attach>false</assembly.attach>
       </properties>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <configuration>
+              <finalName>apache-apex-core-${project.version}</finalName>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
     </profile>
   </profiles>
 </project>

Reply via email to