This repository has been archived by the owner on Jun 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from SkyeBeFreeman/main
feat:update polaris version to 1.3.1
- Loading branch information
Showing
9 changed files
with
96 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,57 @@ | ||
HELP.md | ||
target/ | ||
logs/ | ||
!.mvn/wrapper/maven-wrapper.jar | ||
!**/src/main/**/target/ | ||
!**/src/test/**/target/ | ||
|
||
### STS ### | ||
.apt_generated | ||
.classpath | ||
.factorypath | ||
# Eclipse project files | ||
.project | ||
.classpath | ||
.settings | ||
.springBeans | ||
.sts4-cache | ||
|
||
### IntelliJ IDEA ### | ||
.idea | ||
*.iws | ||
# IntelliJ IDEA project files and directories | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea/ | ||
|
||
# Build targets | ||
/target | ||
*/target | ||
target | ||
/applog | ||
*/applog | ||
applog | ||
|
||
# Mac-specific directory that no other operating system needs. | ||
.DS_Store | ||
|
||
### NetBeans ### | ||
/nbproject/private/ | ||
/nbbuild/ | ||
/dist/ | ||
/nbdist/ | ||
/.nb-gradle/ | ||
build/ | ||
!**/src/main/**/build/ | ||
!**/src/test/**/build/ | ||
|
||
### VS Code ### | ||
# JVM crash logs | ||
hs_err_pid*.log | ||
|
||
dependency-reduced-pom.xml | ||
|
||
*/.unison.* | ||
|
||
# exclude docker-sync stuff | ||
.docker-sync | ||
*/.docker-sync | ||
|
||
# exclude vscode files | ||
.vscode/ | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
*.factorypath | ||
|
||
# misc | ||
*classes | ||
*.class | ||
.svn | ||
logs/ | ||
lib/ | ||
applog/ | ||
|
||
### Maven ignore ### | ||
# Maven ignore | ||
.flattened-pom.xml | ||
|
||
# Polaris | ||
polaris | ||
*/backup | ||
/backup | ||
backup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,14 +15,14 @@ | |
|
||
<properties> | ||
<spring.boot.version>2.4.3</spring.boot.version> | ||
<polaris.version>1.2.3</polaris.version> | ||
<polaris.version>1.3.1</polaris.version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<skip.maven.deploy>false</skip.maven.deploy> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<java.version>1.8</java.version> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
<revision>1.0.1</revision> | ||
<revision>1.1.0</revision> | ||
<openfeign.version>11.1</openfeign.version> | ||
<!-- Maven Plugin Versions --> | ||
<jacoco.version>0.8.3</jacoco.version> | ||
|
@@ -34,21 +34,32 @@ | |
<maven.javadoc.plugin.version>3.2.0</maven.javadoc.plugin.version> | ||
</properties> | ||
|
||
<developers> | ||
<developer> | ||
<id>SkyeBeFreeman</id> | ||
<name>Haotian Zhang</name> | ||
<email>[email protected]</email> | ||
<organization>Tencent</organization> | ||
<url>https://github.com/SkyeBeFreeman/</url> | ||
</developer> | ||
</developers> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-dependencies</artifactId> | ||
<version>${spring.boot.version}</version> | ||
<artifactId>polaris-dependencies</artifactId> | ||
<groupId>com.tencent.polaris</groupId> | ||
<version>${polaris.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
|
||
<!-- polaris --> | ||
<dependency> | ||
<groupId>com.tencent.polaris</groupId> | ||
<artifactId>polaris-all</artifactId> | ||
<version>${polaris.version}</version> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-dependencies</artifactId> | ||
<version>${spring.boot.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
|
||
<!-- feign --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<groupId>com.tencent.polaris</groupId> | ||
|
@@ -17,6 +17,16 @@ | |
<name>SpringBoot Polaris Dependencies</name> | ||
<description>All Dependencies for SpringBoot Polaris</description> | ||
|
||
<developers> | ||
<developer> | ||
<id>SkyeBeFreeman</id> | ||
<name>Haotian Zhang</name> | ||
<email>[email protected]</email> | ||
<organization>Tencent</organization> | ||
<url>https://github.com/SkyeBeFreeman/</url> | ||
</developer> | ||
</developers> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...examples/quickstart-example/quickstart-consumer/src/main/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
server.port=11011 | ||
spring.application.name=EchoClientBoot | ||
polaris.address=grpc://9.134.15.118:8091 | ||
polaris.address=grpc://127.0.0.1:8091 | ||
polaris.discovery.register.enable=true |
2 changes: 1 addition & 1 deletion
2
...examples/quickstart-example/quickstart-provider/src/main/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
server.port=11010 | ||
spring.application.name=EchoServerBoot | ||
polaris.address=grpc://9.134.15.118:8091 | ||
polaris.address=grpc://127.0.0.1:8091 | ||
polaris.discovery.register.enable=true |