Advertisement
andersonalmada2

Untitled

Nov 30th, 2022
354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.07 KB | None | 0 0
  1. <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2.     <modelVersion>4.0.0</modelVersion>
  3.     <groupId>ufc</groupId>
  4.     <artifactId>testea</artifactId>
  5.     <version>0.0.1-SNAPSHOT</version>
  6.  
  7.     <dependencies>
  8.         <dependency>
  9.             <groupId>io.grpc</groupId>
  10.             <artifactId>grpc-netty-shaded</artifactId>
  11.             <version>1.51.0</version>
  12.             <scope>runtime</scope>
  13.         </dependency>
  14.         <dependency>
  15.             <groupId>io.grpc</groupId>
  16.             <artifactId>grpc-protobuf</artifactId>
  17.             <version>1.51.0</version>
  18.         </dependency>
  19.         <dependency>
  20.             <groupId>io.grpc</groupId>
  21.             <artifactId>grpc-stub</artifactId>
  22.             <version>1.51.0</version>
  23.         </dependency>
  24.         <dependency>
  25.             <!-- necessary for Java 9+ -->
  26.             <groupId>org.apache.tomcat</groupId>
  27.             <artifactId>annotations-api</artifactId>
  28.             <version>6.0.53</version>
  29.             <scope>provided</scope>
  30.         </dependency>
  31.     </dependencies>
  32.  
  33.     <build>
  34.         <extensions>
  35.             <extension>
  36.                 <groupId>kr.motd.maven</groupId>
  37.                 <artifactId>os-maven-plugin</artifactId>
  38.                 <version>1.6.2</version>
  39.             </extension>
  40.         </extensions>
  41.         <plugins>
  42.             <plugin>
  43.                 <groupId>org.xolstice.maven.plugins</groupId>
  44.                 <artifactId>protobuf-maven-plugin</artifactId>
  45.                 <version>0.6.1</version>
  46.                 <configuration>
  47.                     <protocArtifact>com.google.protobuf:protoc:3.21.7:exe:${os.detected.classifier}</protocArtifact>
  48.                     <pluginId>grpc-java</pluginId>
  49.                     <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.51.0:exe:${os.detected.classifier}</pluginArtifact>
  50.                 </configuration>
  51.                 <executions>
  52.                     <execution>
  53.                         <goals>
  54.                             <goal>compile</goal>
  55.                             <goal>compile-custom</goal>
  56.                         </goals>
  57.                     </execution>
  58.                 </executions>
  59.             </plugin>
  60.  
  61.             <plugin>
  62.                 <groupId>org.apache.maven.plugins</groupId>
  63.                 <artifactId>maven-compiler-plugin</artifactId>
  64.                 <version>3.8.0</version>
  65.                 <configuration>
  66.                     <release>11</release>
  67.                 </configuration>
  68.             </plugin>
  69.         </plugins>
  70.     </build>
  71. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement