File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -360,7 +360,7 @@ set as `pfopensource`.
360360If you want to skip jar signing just change the skip configuration in the
361361` pom.xml ` jar sign plugin to true:
362362
363- <skip >true</skip >
363+ <project.skipJarSign >true</project.skipJarSign >
364364
365365### Build with Maven
366366
Original file line number Diff line number Diff line change 2323 <properties >
2424 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
2525 <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
26+ <project .skipJarSign>false
27+ </project .skipJarSign> <!-- set this to true if fail because of missing credentials -->
2628 </properties >
2729
2830 <repositories >
9698 </dependency >
9799 </dependencies >
98100 </plugin >
99- <plugin >
100- <groupId >org.apache.maven.plugins</groupId >
101- <artifactId >maven-surefire-plugin</artifactId >
102- <version >2.22.0</version >
103- </plugin >
104101 <plugin >
105102 <groupId >org.jacoco</groupId >
106103 <artifactId >jacoco-maven-plugin</artifactId >
132129 </execution >
133130 </executions >
134131 <configuration >
135- <skip >false </skip > <!-- set this to true if fail because of missing credentials -- >
132+ <skip >${project.skipJarSign} </skip >
136133 <keystore >${session.executionRootDirectory} /keystore.jks</keystore >
137134 <alias >pfopensource</alias >
138135 <storepass >${env.OPENSOURCE_PROJECTS_KS_PW} </storepass >
You can’t perform that action at this time.
0 commit comments