We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dependency for Netty server should be provided
<dependency> <groupId>io.micronaut</groupId> <artifactId>micronaut-http-server-netty</artifactId> <scope>provided</scope> </dependency>
...and excluded from tests
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <classpathDependencyExcludes> <classpathDependencyExclude>io.micronaut:micronaut-http-server-netty</classpathDependencyExclude> </classpathDependencyExcludes> </configuration> </plugin>
Netty dependency has invalid scope.
<dependency> <groupId>io.micronaut</groupId> <artifactId>micronaut-http-server-netty</artifactId> <scope>developmentOnly</scope> </dependency>
Create a sample app with CLI:
mn create-app demo -b maven -f google-cloud-function
Proceed with instructions from https://micronaut-projects.github.io/micronaut-gcp/4.0.0/guide/index.html#httpFunctions.
No response
4.0.0
The text was updated successfully, but these errors were encountered:
jeremyg484
No branches or pull requests
Expected Behavior
Dependency for Netty server should be provided
...and excluded from tests
Actual Behaviour
Netty dependency has invalid scope.
Steps To Reproduce
Create a sample app with CLI:
Proceed with instructions from https://micronaut-projects.github.io/micronaut-gcp/4.0.0/guide/index.html#httpFunctions.
Environment Information
No response
Example Application
No response
Version
4.0.0
The text was updated successfully, but these errors were encountered: