You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by sa...@apache.org on 2017/03/13 18:31:12 UTC

[1/2] incubator-trafodion git commit: jdbcT4 profile configuration for publish to maven central

Repository: incubator-trafodion
Updated Branches:
  refs/heads/release2.1 e48a2be70 -> a48a06dbd


jdbcT4 profile configuration for publish to maven central


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

Branch: refs/heads/release2.1
Commit: 6e60c47f879a6bc6e88e2c6ccc8f2f6c9a44a6d2
Parents: e48a2be
Author: alex <hu...@esgyn.cn>
Authored: Mon Mar 13 02:17:04 2017 +0000
Committer: alex <hu...@esgyn.cn>
Committed: Mon Mar 13 02:17:04 2017 +0000

----------------------------------------------------------------------
 core/conn/jdbcT4/pom.xml | 99 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 99 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/6e60c47f/core/conn/jdbcT4/pom.xml
----------------------------------------------------------------------
diff --git a/core/conn/jdbcT4/pom.xml b/core/conn/jdbcT4/pom.xml
index b5e1bbb..d465aad 100644
--- a/core/conn/jdbcT4/pom.xml
+++ b/core/conn/jdbcT4/pom.xml
@@ -27,11 +27,35 @@
 -->
 
   <modelVersion>4.0.0</modelVersion>
+  <!--<parent>
+    <groupId>org.apache.trafodion</groupId>
+    <artifactId>trafodion</artifactId>
+    <version>1.3.0</version>
+	<relativePath>../../../</relativePath>
+  </parent>-->
   <groupId>org.trafodion.jdbc.t4</groupId>
   <artifactId>jdbcT4</artifactId>
   <version>${env.TRAFODION_VER}</version> 
   <name>Trafodion JDBC Type4 Driver</name>
   <url>http://wiki.trafodion.org</url>
+  
+<distributionManagement>
+  <snapshotRepository>
+    <id>apache.snapshots.https</id>
+    <url>https://repository.apache.org/content/repositories/snapshots</url>
+  </snapshotRepository>
+  <repository>
+    <id>apache.releases.https</id>
+    <url>https://repository.apache.org/service/local/staging/deploy/maven2</url>
+  </repository>
+</distributionManagement>
+ 
+ <scm>
+    <connection>scm:git:https://github.com/apache/incubator-trafodion.git</connection>
+    <developerConnection>scm:git:https://github.com/apache/incubator-trafodion.git</developerConnection>
+    <url>https://github.com/apache/incubator-trafodion.git</url>
+    <tag>HEAD</tag>
+  </scm>
 
   <dependencies>
     <dependency>
@@ -179,5 +203,80 @@
     </plugin>
    </plugins>
   </build>
+<profiles>
+	<profile>
+      <id>apache-release</id>
+      <activation>
+		<property>
+          <name>performRelease</name>
+          <value>true</value>
+        </property>
+      </activation>
+      <build>
+		<plugins>
+		<plugin>
+                 <groupId>org.apache.maven.plugins</groupId>
+                 <artifactId>maven-release-plugin</artifactId>
+                 <version>2.5</version>
+                 <configuration>
+                   <autoVersionSubmodules>true</autoVersionSubmodules>
+                   <useReleaseProfile>false</useReleaseProfile>
+                   <releaseProfiles>apache-release</releaseProfiles>
+                   <goals>deploy</goals>
+                 </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>3.0</version>
+                <configuration>
+                    <source>1.6</source>
+                    <target>1.6</target>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <version>2.2.1</version>
+                <executions>
+                    <execution>
+                        <id>attach-sources</id>
+                        <goals>
+                            <goal>jar-no-fork</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.9</version>
+                <executions>
+                    <execution>
+                        <id>attach-javadocs</id>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
 
+		<plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-gpg-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>sign-artifacts</id>
+				<phase>verify</phase>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>


[2/2] incubator-trafodion git commit: Merge [TRAFODION-2513] jdbcT4 maven publishing

Posted by sa...@apache.org.
Merge [TRAFODION-2513] jdbcT4 maven publishing


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

Branch: refs/heads/release2.1
Commit: a48a06dbd56fc7484ce0925a8f7a90eebfa7f5b3
Parents: e48a2be 6e60c47
Author: Sandhya Sundaresan <sa...@apache.org>
Authored: Mon Mar 13 18:30:43 2017 +0000
Committer: Sandhya Sundaresan <sa...@apache.org>
Committed: Mon Mar 13 18:30:43 2017 +0000

----------------------------------------------------------------------
 core/conn/jdbcT4/pom.xml | 99 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 99 insertions(+)
----------------------------------------------------------------------