Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Zhao <[email protected]>
  • Loading branch information
sczyh30 committed Sep 26, 2018
1 parent 9e012d2 commit cf1cf8a
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 22 deletions.
17 changes: 0 additions & 17 deletions sentinel-adapter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,6 @@
<module>sentinel-grpc-adapter</module>
</modules>

<properties>
<servlet.api.version>3.1.0</servlet.api.version>
<dubbo.version>2.5.8</dubbo.version>
<grpc.version>1.13.1</grpc.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
Expand All @@ -38,18 +32,7 @@
<artifactId>sentinel-extension</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servlet.api.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo</artifactId>
<version>${dubbo.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
6 changes: 5 additions & 1 deletion sentinel-adapter/sentinel-dubbo-adapter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
<artifactId>sentinel-dubbo-adapter</artifactId>
<packaging>jar</packaging>

<properties>
<dubbo.version>2.5.8</dubbo.version>
</properties>

<dependencies>
<dependency>
<groupId>com.alibaba.csp</groupId>
Expand All @@ -20,6 +24,7 @@
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo</artifactId>
<version>${dubbo.version}</version>
<scope>provided</scope>
</dependency>

Expand All @@ -37,7 +42,6 @@
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.47</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 4 additions & 0 deletions sentinel-adapter/sentinel-grpc-adapter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
<artifactId>sentinel-grpc-adapter</artifactId>
<packaging>jar</packaging>

<properties>
<grpc.version>1.13.1</grpc.version>
</properties>

<dependencies>
<dependency>
<groupId>com.alibaba.csp</groupId>
Expand Down
9 changes: 8 additions & 1 deletion sentinel-adapter/sentinel-web-servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,25 @@
<artifactId>sentinel-adapter</artifactId>
<version>0.2.0-SNAPSHOT</version>
</parent>

<artifactId>sentinel-web-servlet</artifactId>
<packaging>jar</packaging>

<properties>
<servlet.api.version>3.1.0</servlet.api.version>
</properties>

<dependencies>
<dependency>
<groupId>com.alibaba.csp</groupId>
<artifactId>sentinel-core</artifactId>
</dependency>

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servlet.api.version}</version>
<scope>provided</scope>
</dependency>

</dependencies>
</project>
2 changes: 0 additions & 2 deletions sentinel-dashboard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,7 @@
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.47</version>
</dependency>

</dependencies>

<build>
Expand Down
2 changes: 1 addition & 1 deletion sentinel-extension/sentinel-datasource-nacos/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<packaging>jar</packaging>

<properties>
<nacos.version>0.1.0</nacos.version>
<nacos.version>0.2.0</nacos.version>
</properties>

<dependencies>
Expand Down
2 changes: 2 additions & 0 deletions sentinel-extension/sentinel-datasource-zookeeper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
<packaging>jar</packaging>

<properties>
<java.source.version>1.7</java.source.version>
<java.target.version>1.7</java.target.version>
<zookeeper.version>3.4.13</zookeeper.version>
<curator.version>4.0.1</curator.version>
<curator.test.version>2.12.0</curator.test.version>
Expand Down

0 comments on commit cf1cf8a

Please sign in to comment.