You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tephra.apache.org by go...@apache.org on 2016/06/29 21:20:32 UTC

[2/4] incubator-tephra git commit: Add profile for tephra-examples

Add profile for tephra-examples


Project: http://git-wip-us.apache.org/repos/asf/incubator-tephra/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tephra/commit/d0a59d93
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tephra/tree/d0a59d93
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tephra/diff/d0a59d93

Branch: refs/heads/test/0.9.0
Commit: d0a59d93c81810dd2d7d5ed218d2398dc6794ce5
Parents: fe03a3b
Author: Gokul Gunasekaran <go...@apache.org>
Authored: Wed Jun 29 14:03:07 2016 -0700
Committer: Gokul Gunasekaran <go...@apache.org>
Committed: Wed Jun 29 14:03:07 2016 -0700

----------------------------------------------------------------------
 release.properties      | 11 +++++++++++
 tephra-examples/pom.xml | 28 ++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tephra/blob/d0a59d93/release.properties
----------------------------------------------------------------------
diff --git a/release.properties b/release.properties
new file mode 100644
index 0000000..7ef7704
--- /dev/null
+++ b/release.properties
@@ -0,0 +1,11 @@
+#release configuration
+#Wed Jun 29 14:02:39 PDT 2016
+scm.tagNameFormat=v@{project.version}
+pushChanges=true
+scm.url=scm\:git\:https\://git-wip-us.apache.org/repos/asf/incubator-tephra.git
+preparationGoals=clean verify
+remoteTagging=true
+scm.commentPrefix=[maven-release-plugin] 
+exec.additionalArguments=-Papache-release  -P apache-release,cdh5.7
+exec.snapshotReleasePluginAllowed=false
+completedPhase=check-poms

http://git-wip-us.apache.org/repos/asf/incubator-tephra/blob/d0a59d93/tephra-examples/pom.xml
----------------------------------------------------------------------
diff --git a/tephra-examples/pom.xml b/tephra-examples/pom.xml
index a61652c..08ab1e5 100644
--- a/tephra-examples/pom.xml
+++ b/tephra-examples/pom.xml
@@ -101,4 +101,32 @@
     </dependency>
   </dependencies>
 
+  <profiles>
+    <profile>
+      <id>cdh5.7</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-jar-plugin</artifactId>
+            <executions>
+              <execution>
+                <phase>package</phase>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+                <configuration>
+                  <classifier>cdh5.7</classifier>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+      <properties>
+        <hadoop.version>2.6.0-cdh5.7.1</hadoop.version>
+        <hbase12.version>1.2.0-cdh5.7.1</hbase12.version>
+      </properties>
+    </profile>
+  </profiles>
+
 </project>