Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
Updated parent (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-v authored Oct 2, 2022
1 parent 0f5401b commit f0cde2f
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 94 deletions.
98 changes: 20 additions & 78 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

<parent>
<groupId>io.scalecube</groupId>
<artifactId>scalecube-parent-pom</artifactId>
<version>0.2.19</version>
<artifactId>scalecube-parent</artifactId>
<version>0.2.20</version>
</parent>

<artifactId>scalecube-gateway-parent</artifactId>
Expand Down Expand Up @@ -33,23 +33,25 @@
</scm>

<properties>
<scalecube-services.version>2.10.23</scalecube-services.version>
<scalecube-commons.version>1.0.18</scalecube-commons.version>
<scalecube-cluster.version>2.6.12</scalecube-cluster.version>

<reactor.version>2020.0.10</reactor.version>
<rsocket.version>1.0.5</rsocket.version>
<netty.version>4.1.66.Final</netty.version>
<jackson.version>2.11.0</jackson.version>
<slf4j.version>1.7.30</slf4j.version>
<log4j.version>2.13.2</log4j.version>
<scalecube-cluster.version>2.6.13</scalecube-cluster.version>
<scalecube-commons.version>1.0.21</scalecube-commons.version>
<scalecube-services.version>2.10.24</scalecube-services.version>

<reactor.version>2020.0.23</reactor.version>
<rsocket.version>1.1.3</rsocket.version>
<jackson.version>2.13.3</jackson.version>
<slf4j.version>1.7.36</slf4j.version>
<log4j.version>2.17.2</log4j.version>
<disruptor.version>3.4.2</disruptor.version>

<jsr305.version>3.0.2</jsr305.version>
<jctools.version>2.1.2</jctools.version>
<junit.version>5.1.1</junit.version>
<mockito.version>2.24.5</mockito.version>

<mockito-junit-jupiter.version>4.6.1</mockito-junit-jupiter.version>
<junit-jupiter.version>5.8.2</junit-jupiter.version>
<hamcrest.version>1.3</hamcrest.version>

<distributionManagement.url>https://maven.pkg.github.com/scalecube/scalecube-gateway
</distributionManagement.url>
</properties>

<modules>
Expand Down Expand Up @@ -82,11 +84,6 @@
<artifactId>scalecube-services-transport-jackson</artifactId>
<version>${scalecube-services.version}</version>
</dependency>
<dependency>
<groupId>io.scalecube</groupId>
<artifactId>scalecube-services-bytebuf-codec</artifactId>
<version>${scalecube-services.version}</version>
</dependency>
<dependency>
<groupId>io.scalecube</groupId>
<artifactId>scalecube-commons</artifactId>
Expand Down Expand Up @@ -146,15 +143,6 @@
<scope>import</scope>
</dependency>

<!-- Netty -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>${netty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<!-- JCTools -->
<dependency>
<groupId>org.jctools</groupId>
Expand All @@ -169,19 +157,19 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.version}</version>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>${mockito.version}</version>
<version>${mockito-junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -190,57 +178,11 @@
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<profiles>
<profile>
<id>deploy2Github</id>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/scalecube/scalecube-gateway</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>deploy2Maven</id>
<distributionManagement>
<repository>
<id>ossrh</id>
<name>Central Repository OSSRH</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
8 changes: 0 additions & 8 deletions services-gateway-client-transport/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@
<artifactId>scalecube-services-gateway-client-transport</artifactId>

<dependencies>
<dependency>
<groupId>io.scalecube</groupId>
<artifactId>scalecube-services-bytebuf-codec</artifactId>
</dependency>
<dependency>
<groupId>io.scalecube</groupId>
<artifactId>scalecube-services-transport-rsocket</artifactId>
Expand All @@ -24,10 +20,6 @@
<artifactId>scalecube-services</artifactId>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import com.fasterxml.jackson.databind.MappingJsonFactory;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufAllocator;
import io.netty.buffer.ByteBufInputStream;
Expand Down Expand Up @@ -163,7 +162,6 @@ private static ObjectMapper objectMapper() {
mapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
mapper.configure(SerializationFeature.WRITE_ENUMS_USING_TO_STRING, true);
mapper.registerModule(new JavaTimeModule());
return mapper;
}
}
4 changes: 0 additions & 4 deletions services-gateway-netty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@
<artifactId>rsocket-transport-netty</artifactId>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import com.fasterxml.jackson.databind.MappingJsonFactory;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufAllocator;
import io.netty.buffer.ByteBufInputStream;
Expand Down Expand Up @@ -167,7 +166,6 @@ private static ObjectMapper objectMapper() {
mapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
mapper.configure(SerializationFeature.WRITE_ENUMS_USING_TO_STRING, true);
mapper.registerModule(new JavaTimeModule());
return mapper;
}
}

0 comments on commit f0cde2f

Please sign in to comment.