|
4 | 4 | <modelVersion>4.0.0</modelVersion>
|
5 | 5 | <groupId>io.eigr</groupId>
|
6 | 6 | <artifactId>spawn-springboot-sdk</artifactId>
|
7 |
| - <version>0.1.8</version> |
| 7 | + <version>0.1.9</version> |
8 | 8 | <packaging>pom</packaging>
|
9 | 9 | <name>spawn-springboot-sdk</name>
|
10 | 10 | <url>https://eigr.io</url>
|
|
36 | 36 | <scope>test</scope>
|
37 | 37 | </dependency>
|
38 | 38 | </dependencies>
|
| 39 | + |
| 40 | + |
| 41 | + <build> |
| 42 | + <extensions> |
| 43 | + <extension> |
| 44 | + <groupId>kr.motd.maven</groupId> |
| 45 | + <artifactId>os-maven-plugin</artifactId> |
| 46 | + <version>1.6.2</version> |
| 47 | + </extension> |
| 48 | + </extensions> |
| 49 | + |
| 50 | + <plugins> |
| 51 | + <plugin> |
| 52 | + <groupId>org.xolstice.maven.plugins</groupId> |
| 53 | + <artifactId>protobuf-maven-plugin</artifactId> |
| 54 | + <version>0.6.1</version> |
| 55 | + <configuration> |
| 56 | + <protocArtifact>com.google.protobuf:protoc:3.19.2:exe:${os.detected.classifier}</protocArtifact> |
| 57 | + <pluginId>grpc-java</pluginId> |
| 58 | + <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.47.0:exe:${os.detected.classifier}</pluginArtifact> |
| 59 | + </configuration> |
| 60 | + <executions> |
| 61 | + <execution> |
| 62 | + <goals> |
| 63 | + <goal>compile</goal> |
| 64 | + <goal>compile-custom</goal> |
| 65 | + <goal>test-compile</goal> |
| 66 | + </goals> |
| 67 | + </execution> |
| 68 | + </executions> |
| 69 | + </plugin> |
| 70 | + |
| 71 | + <plugin> |
| 72 | + <groupId>org.codehaus.mojo</groupId> |
| 73 | + <artifactId>build-helper-maven-plugin</artifactId> |
| 74 | + <version>3.2.0</version> |
| 75 | + <executions> |
| 76 | + <execution> |
| 77 | + <id>add-test-sources</id> |
| 78 | + <phase>generate-test-sources</phase> |
| 79 | + <goals> |
| 80 | + <goal>add-test-source</goal> |
| 81 | + </goals> |
| 82 | + <configuration> |
| 83 | + <sources> |
| 84 | + <source>${project.build.directory}/generated-test-sources/protobuf</source> |
| 85 | + </sources> |
| 86 | + </configuration> |
| 87 | + </execution> |
| 88 | + </executions> |
| 89 | + </plugin> |
| 90 | + </plugins> |
| 91 | + </build> |
| 92 | + |
| 93 | + |
39 | 94 | </project>
|
0 commit comments