File tree Expand file tree Collapse file tree 2 files changed +24
-3
lines changed
Expand file tree Collapse file tree 2 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ The second thing we have to do is add the spawn dependency to the project.
9292<dependency >
9393 <groupId >com.github.eigr</groupId >
9494 <artifactId >spawn-java-std-sdk</artifactId >
95- <version >v0.6.1 </version >
95+ <version >v0.6.2 </version >
9696</dependency >
9797```
9898We're also going to configure a few things for our application build to work, including compiling the protobuf files.
@@ -126,7 +126,7 @@ See below a full example of the pom.xml file:
126126 <dependency >
127127 <groupId >com.github.eigr</groupId >
128128 <artifactId >spawn-java-std-sdk</artifactId >
129- <version >v0.6.1 </version >
129+ <version >v0.6.2 </version >
130130 </dependency >
131131 <dependency >
132132 <groupId >ch.qos.logback</groupId >
Original file line number Diff line number Diff line change 44 <groupId >io.eigr.spawn</groupId >
55 <artifactId >spawn-java-std-sdk</artifactId >
66 <packaging >jar</packaging >
7- <version >0.5 .2</version >
7+ <version >0.6 .2</version >
88 <name >spawn-java-std-sdk</name >
99 <url >http://maven.apache.org</url >
1010
9191 </extensions >
9292
9393 <plugins >
94+ <plugin >
95+ <groupId >org.apache.maven.plugins</groupId >
96+ <artifactId >maven-javadoc-plugin</artifactId >
97+ <version >3.5.0</version >
98+ </plugin >
99+
100+ <plugin >
101+ <groupId >org.apache.maven.plugins</groupId >
102+ <artifactId >maven-source-plugin</artifactId >
103+ <version >2.1.2</version >
104+ <executions >
105+ <execution >
106+ <id >attach-sources</id >
107+ <phase >verify</phase >
108+ <goals >
109+ <goal >jar-no-fork</goal >
110+ </goals >
111+ </execution >
112+ </executions >
113+ </plugin >
114+
94115 <plugin >
95116 <groupId >org.xolstice.maven.plugins</groupId >
96117 <artifactId >protobuf-maven-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments