You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sentry.apache.org by co...@apache.org on 2016/05/24 02:04:14 UTC

sentry git commit: SENTRY-1294: Fix the management problem for dependency's version(Colin Ma, reviewed by Dapeng Sun)

Repository: sentry
Updated Branches:
  refs/heads/master b4a64f976 -> 78e0393a3


SENTRY-1294: Fix the management problem for dependency's version(Colin Ma, reviewed by Dapeng Sun)


Project: http://git-wip-us.apache.org/repos/asf/sentry/repo
Commit: http://git-wip-us.apache.org/repos/asf/sentry/commit/78e0393a
Tree: http://git-wip-us.apache.org/repos/asf/sentry/tree/78e0393a
Diff: http://git-wip-us.apache.org/repos/asf/sentry/diff/78e0393a

Branch: refs/heads/master
Commit: 78e0393a3185eb452cf6a97554b360d44ad49039
Parents: b4a64f9
Author: Colin Ma <co...@apache.org>
Authored: Tue May 24 10:42:20 2016 +0800
Committer: Colin Ma <co...@apache.org>
Committed: Tue May 24 10:42:20 2016 +0800

----------------------------------------------------------------------
 pom.xml                                    | 25 +++++++++++++++++++++++++
 sentry-provider/sentry-provider-db/pom.xml |  5 -----
 2 files changed, 25 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/sentry/blob/78e0393a/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 44a1e5a..5ce7247 100644
--- a/pom.xml
+++ b/pom.xml
@@ -590,6 +590,31 @@ limitations under the License.
         <artifactId>kafka_2.11</artifactId>
         <version>${kafka.version}</version>
       </dependency>
+      <dependency>
+        <groupId>com.codahale.metrics</groupId>
+        <artifactId>metrics-core</artifactId>
+        <version>${metrics.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>com.codahale.metrics</groupId>
+        <artifactId>metrics-servlets</artifactId>
+        <version>${metrics.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>com.codahale.metrics</groupId>
+        <artifactId>metrics-jvm</artifactId>
+        <version>${metrics.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.eclipse.jetty</groupId>
+        <artifactId>jetty-server</artifactId>
+        <version>${jettyVersion}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.eclipse.jetty</groupId>
+        <artifactId>jetty-servlet</artifactId>
+        <version>${jettyVersion}</version>
+      </dependency>
     </dependencies>
   </dependencyManagement>
 

http://git-wip-us.apache.org/repos/asf/sentry/blob/78e0393a/sentry-provider/sentry-provider-db/pom.xml
----------------------------------------------------------------------
diff --git a/sentry-provider/sentry-provider-db/pom.xml b/sentry-provider/sentry-provider-db/pom.xml
index c075524..b8143ff 100644
--- a/sentry-provider/sentry-provider-db/pom.xml
+++ b/sentry-provider/sentry-provider-db/pom.xml
@@ -139,27 +139,22 @@ limitations under the License.
     <dependency>
       <groupId>com.codahale.metrics</groupId>
       <artifactId>metrics-core</artifactId>
-      <version>${metrics.version}</version>
     </dependency>
     <dependency>
       <groupId>com.codahale.metrics</groupId>
       <artifactId>metrics-servlets</artifactId>
-      <version>${metrics.version}</version>
     </dependency>
     <dependency>
       <groupId>com.codahale.metrics</groupId>
       <artifactId>metrics-jvm</artifactId>
-      <version>${metrics.version}</version>
     </dependency>
     <dependency>
       <groupId>org.eclipse.jetty</groupId>
       <artifactId>jetty-server</artifactId>
-      <version>${jettyVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.eclipse.jetty</groupId>
       <artifactId>jetty-servlet</artifactId>
-      <version>${jettyVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.mockito</groupId>