You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nemo.apache.org by ja...@apache.org on 2018/11/01 07:50:39 UTC

[incubator-nemo] branch master updated: [NEMO-254] Modify POM to publish maven artifacts (#140)

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

jangho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nemo.git


The following commit(s) were added to refs/heads/master by this push:
     new 6e4a317  [NEMO-254] Modify POM to publish maven artifacts (#140)
6e4a317 is described below

commit 6e4a317324be11cf10c5a640750dcb539f19945a
Author: jooykim <jo...@gmail.com>
AuthorDate: Thu Nov 1 16:50:35 2018 +0900

    [NEMO-254] Modify POM to publish maven artifacts (#140)
    
    JIRA: [NEMO-254: Modify POM to publish maven artifacts](https://issues.apache.org/jira/projects/NEMO/issues/NEMO-254)
    
    **Major changes:**
    - Modifies the current pom.xml to inherit the Apache POM
    
    **Minor changes to note:**
    - N/A
    
    **Tests for the changes:**
    - N/A (The build suffices)
    
    **Other comments:**
    - This PR is to inherit the Apache POM which facilitates publishing our releases as maven artifacts
---
 pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/pom.xml b/pom.xml
index 3a81df7..88ac6ec 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,6 +22,12 @@ under the License.
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
 
+    <parent>
+      <groupId>org.apache</groupId>
+      <artifactId>apache</artifactId>
+      <version>21</version>
+    </parent>
+
     <groupId>org.apache.nemo</groupId>
     <artifactId>nemo-project</artifactId>
     <version>0.1-SNAPSHOT</version>