Skip to content

Commit e3a397c

Browse files
authored
Merge pull request #6 from netifi/release/1.5.2
1.5.2 release
2 parents d933c87 + 2fc73d9 commit e3a397c

File tree

5 files changed

+32
-31
lines changed

5 files changed

+32
-31
lines changed

build.gradle

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@ subprojects {
22
apply plugin: 'idea'
33

44
group 'io.netifi.proteus.quickstart'
5-
version '1.5.0'
5+
version '1.5.2'
66

77
ext {
88
protobufVersion = '3.6.1'
9-
proteusVersion = '1.5.0'
10-
rsocketRpcVersion = '0.2.4'
11-
proteusSpringVersion = '1.5.0'
12-
springBootBomVersion = '2.0.5.RELEASE'
9+
proteusVersion = '1.5.2'
10+
rsocketRpcVersion = '0.2.10'
11+
proteusSpringVersion = '1.5.2'
12+
springBootBomVersion = '2.0.6.RELEASE'
1313
}
1414

1515
repositories {
16+
mavenCentral()
1617
jcenter()
1718
maven {
1819
url 'https://dl.bintray.com/netifi/netifi-oss/'

client/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,30 @@
66
<parent>
77
<groupId>io.netifi.proteus.quickstart</groupId>
88
<artifactId>proteus-quickstart</artifactId>
9-
<version>1.5.0</version>
9+
<version>1.5.2</version>
1010
</parent>
1111

1212
<artifactId>client</artifactId>
1313
<name>client</name>
14-
<version>1.5.0</version>
14+
<version>${parent.version}</version>
1515
<packaging>jar</packaging>
1616

1717
<dependencies>
1818
<dependency>
1919
<groupId>io.netifi.proteus.quickstart</groupId>
2020
<artifactId>service-idl</artifactId>
21-
<version>1.5.0</version>
21+
<version>${parent.version}</version>
2222
<scope>compile</scope>
2323
</dependency>
2424
<dependency>
2525
<groupId>io.netifi.proteus</groupId>
2626
<artifactId>proteus-spring-boot-starter</artifactId>
27-
<version>${proteusSpringVersion}</version>
27+
<version>${proteus.version}</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>org.springframework.boot</groupId>
3131
<artifactId>spring-boot-dependencies</artifactId>
32-
<version>2.0.2.RELEASE</version>
32+
<version>${spring.boot.version}</version>
3333
<type>pom</type>
3434
<scope>import</scope>
3535
</dependency>
@@ -48,7 +48,7 @@
4848
<plugin>
4949
<groupId>org.springframework.boot</groupId>
5050
<artifactId>spring-boot-maven-plugin</artifactId>
51-
<version>2.0.5.RELEASE</version>
51+
<version>${spring.boot.version}</version>
5252
</plugin>
5353
</plugins>
5454
</build>

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>io.netifi.proteus.quickstart</groupId>
55
<artifactId>proteus-quickstart</artifactId>
6-
<version>1.5.0</version>
6+
<version>1.5.2</version>
77
<packaging>pom</packaging>
88
<name>multi</name>
99
<modules>
@@ -14,10 +14,10 @@
1414
<properties>
1515
<maven.compiler.target>1.8</maven.compiler.target>
1616
<maven.compiler.source>1.8</maven.compiler.source>
17-
<proteusVersion>1.5.0</proteusVersion>
18-
<proteusSpringVersion>1.5.0</proteusSpringVersion>
19-
<rsocketRpcVersion>0.2.4</rsocketRpcVersion>
20-
<protobufVersion>3.6.1</protobufVersion>
17+
<proteus.version>${project.version}</proteus.version>
18+
<spring.boot.version>2.0.6.RELEASE</spring.boot.version>
19+
<rsocket.rpc.version>0.2.10</rsocket.rpc.version>
20+
<protobuf.version>3.6.1</protobuf.version>
2121
<log4j2Version>2.9.0</log4j2Version>
2222
</properties>
2323
<repositories>

service-idl/pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,23 @@
77
<parent>
88
<groupId>io.netifi.proteus.quickstart</groupId>
99
<artifactId>proteus-quickstart</artifactId>
10-
<version>1.5.0</version>
10+
<version>1.5.2</version>
1111
</parent>
1212

1313
<artifactId>service-idl</artifactId>
1414
<name>service-idl</name>
15-
<version>1.5.0</version>
15+
<version>${parent.version}</version>
1616
<packaging>jar</packaging>
1717
<dependencies>
1818
<dependency>
1919
<groupId>io.netifi.proteus</groupId>
2020
<artifactId>proteus-client</artifactId>
21-
<version>${proteusVersion}</version>
21+
<version>${proteus.version}</version>
2222
</dependency>
2323
<dependency>
2424
<groupId>io.netifi.proteus</groupId>
2525
<artifactId>proteus-metrics-micrometer</artifactId>
26-
<version>${proteusVersion}</version>
26+
<version>${proteus.version}</version>
2727
<exclusions>
2828
<exclusion>
2929
<groupId>io.rsocket.rpc</groupId>
@@ -34,7 +34,7 @@
3434
<dependency>
3535
<groupId>io.netifi.proteus</groupId>
3636
<artifactId>proteus-tracing-openzipkin</artifactId>
37-
<version>${proteusVersion}</version>
37+
<version>${proteus.version}</version>
3838
<exclusions>
3939
<exclusion>
4040
<groupId>io.rsocket.rpc</groupId>
@@ -50,7 +50,7 @@
5050
<dependency>
5151
<groupId>io.rsocket.rpc</groupId>
5252
<artifactId>rsocket-rpc-core</artifactId>
53-
<version>${rsocketRpcVersion}</version>
53+
<version>${rsocket.rpc.version}</version>
5454
<exclusions>
5555
<exclusion>
5656
<groupId>io.rsocket.rpc</groupId>
@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>com.google.protobuf</groupId>
6363
<artifactId>protobuf-java</artifactId>
64-
<version>${protobufVersion}</version>
64+
<version>${protobuf.version}</version>
6565
</dependency>
6666
</dependencies>
6767

@@ -98,11 +98,11 @@
9898
<version>0.5.1</version>
9999
<configuration>
100100
<protocArtifact>
101-
com.google.protobuf:protoc:${protobufVersion}:exe:${os.detected.classifier}
101+
com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}
102102
</protocArtifact>
103103
<pluginId>rsocketRpc</pluginId>
104104
<pluginArtifact>
105-
io.rsocket.rpc:rsocket-rpc-protobuf:${rsocketRpcVersion}:exe:${os.detected.classifier}
105+
io.rsocket.rpc:rsocket-rpc-protobuf:${rsocket.rpc.version}:exe:${os.detected.classifier}
106106
</pluginArtifact>
107107
</configuration>
108108
<executions>

service/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,30 @@
77
<parent>
88
<groupId>io.netifi.proteus.quickstart</groupId>
99
<artifactId>proteus-quickstart</artifactId>
10-
<version>1.5.0</version>
10+
<version>1.5.2</version>
1111
</parent>
1212

1313
<artifactId>service</artifactId>
1414
<name>service</name>
15-
<version>1.5.0</version>
15+
<version>${parent.version}</version>
1616
<packaging>jar</packaging>
1717

1818
<dependencies>
1919
<dependency>
2020
<groupId>io.netifi.proteus.quickstart</groupId>
2121
<artifactId>service-idl</artifactId>
22-
<version>1.5.0</version>
22+
<version>${project.version}</version>
2323
<scope>compile</scope>
2424
</dependency>
2525
<dependency>
2626
<groupId>io.netifi.proteus</groupId>
2727
<artifactId>proteus-spring-boot-starter</artifactId>
28-
<version>${proteusSpringVersion}</version>
28+
<version>${project.version}</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>org.springframework.boot</groupId>
3232
<artifactId>spring-boot-dependencies</artifactId>
33-
<version>2.0.2.RELEASE</version>
33+
<version>${spring.boot.version}</version>
3434
<type>pom</type>
3535
<scope>import</scope>
3636
</dependency>
@@ -49,7 +49,7 @@
4949
<plugin>
5050
<groupId>org.springframework.boot</groupId>
5151
<artifactId>spring-boot-maven-plugin</artifactId>
52-
<version>2.0.2.RELEASE</version>
52+
<version>${spring.boot.version}</version>
5353
</plugin>
5454
</plugins>
5555
</build>

0 commit comments

Comments
 (0)