If the user wants a second port for gRPC that should be possible
(and was the only way with the old ecosystem projects). This change
adds a webflux sample and support for
spring.grpc.server.{servlet,reactive}.enabled to be explicitly
"false" to disable the embedded services.
N.B. embedded services are not yet supported in webflux so the flag
has no effect, except to disable gRPC completely if it is "true".
38 lines
967 B
XML
38 lines
967 B
XML
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.grpc</groupId>
|
|
<artifactId>spring-grpc</artifactId>
|
|
<version>0.3.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>org.springframework.grpc</groupId>
|
|
<artifactId>parent-samples</artifactId>
|
|
<version>0.3.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<name>Parent Demo</name>
|
|
|
|
<modules>
|
|
<module>grpc-server</module>
|
|
<module>grpc-server-netty-shaded</module>
|
|
<module>grpc-tomcat</module>
|
|
<module>grpc-webflux</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|