File tree 4 files changed +48
-4
lines changed
spring-cloud-bindings-tests
4 files changed +48
-4
lines changed Original file line number Diff line number Diff line change 20
20
<maven .compiler.source>${java.version} </maven .compiler.source>
21
21
<maven .compiler.target>${java.version} </maven .compiler.target>
22
22
<spring-boot .version>3.1.0</spring-boot .version>
23
+ <maven-gpg-plugin .version>3.1.0</maven-gpg-plugin .version>
24
+ <maven-deploy-plugin .version>3.1.1</maven-deploy-plugin .version>
23
25
</properties >
24
26
25
27
<licenses >
33
35
<module >spring-cloud-bindings</module >
34
36
<module >spring-cloud-bindings-tests</module >
35
37
</modules >
38
+
39
+ <build >
40
+ <plugins >
41
+ <plugin >
42
+ <groupId >org.apache.maven.plugins</groupId >
43
+ <artifactId >maven-gpg-plugin</artifactId >
44
+ <version >${maven-gpg-plugin.version} </version >
45
+ <executions >
46
+ <execution >
47
+ <id >sign-artifacts</id >
48
+ <phase >verify</phase >
49
+ <goals >
50
+ <goal >sign</goal >
51
+ </goals >
52
+ <configuration >
53
+ <gpgArguments >
54
+ <arg >--pinentry-mode</arg >
55
+ <arg >loopback</arg >
56
+ </gpgArguments >
57
+ </configuration >
58
+ </execution >
59
+ </executions >
60
+ </plugin >
61
+ <plugin >
62
+ <groupId >org.apache.maven.plugins</groupId >
63
+ <artifactId >maven-deploy-plugin</artifactId >
64
+ <version >${maven-deploy-plugin.version} </version >
65
+ </plugin >
66
+ </plugins >
67
+ </build >
68
+
36
69
<scm >
37
70
<url >https://github.com/spring-cloud/spring-cloud-bindings</url >
38
71
</scm >
Original file line number Diff line number Diff line change 29
29
30
30
REPOSITORY=" ${PWD} " /repository
31
31
32
- cd source/spring-cloud-bindings
33
-
34
- ../mvnw deploy -Dmaven.test.skip=true -DaltDeploymentRepository=" local::default::file://${REPOSITORY} "
32
+ cd source
33
+ ./mvnw deploy -Dmaven.test.skip=true -DaltDeploymentRepository=" local::default::file://${REPOSITORY} "
Original file line number Diff line number Diff line change 51
51
52
52
<build >
53
53
<plugins >
54
+ <plugin >
55
+ <groupId >org.apache.maven.plugins</groupId >
56
+ <artifactId >maven-deploy-plugin</artifactId >
57
+ <version >${maven-deploy-plugin.version} </version >
58
+ <configuration >
59
+ <skip >true</skip >
60
+ </configuration >
61
+ </plugin >
54
62
<plugin >
55
63
<groupId >org.apache.maven.plugins</groupId >
56
64
<artifactId >maven-compiler-plugin</artifactId >
Original file line number Diff line number Diff line change 43
43
<maven-compiler-plugin .version>3.10.1</maven-compiler-plugin .version>
44
44
<maven-source-plugin .version>3.2.1</maven-source-plugin .version>
45
45
<maven-surefire-plugin .version>3.0.0-M7</maven-surefire-plugin .version>
46
- <maven-gpg-plugin .version>3.0.1</maven-gpg-plugin .version>
47
46
<maven-javadoc-plugin .version>3.4.1</maven-javadoc-plugin .version>
48
47
</properties >
49
48
182
181
<runOrder >random</runOrder >
183
182
</configuration >
184
183
</plugin >
184
+ <plugin >
185
+ <groupId >org.apache.maven.plugins</groupId >
186
+ <artifactId >maven-deploy-plugin</artifactId >
187
+ <version >${maven-deploy-plugin.version} </version >
188
+ </plugin >
185
189
</plugins >
186
190
</build >
187
191
</project >
You can’t perform that action at this time.
0 commit comments