File tree Expand file tree Collapse file tree 1 file changed +47
-0
lines changed
Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change 4848 <artifactId >maven-failsafe-plugin</artifactId >
4949 <version >2.22.2</version >
5050 </plugin >
51+ <plugin >
52+ <groupId >org.apache.maven.plugins</groupId >
53+ <artifactId >maven-source-plugin</artifactId >
54+ <version >2.2.1</version >
55+ <executions >
56+ <execution >
57+ <id >attach-sources</id >
58+ <goals >
59+ <goal >jar-no-fork</goal >
60+ </goals >
61+ </execution >
62+ </executions >
63+ </plugin >
64+ <plugin >
65+ <groupId >org.apache.maven.plugins</groupId >
66+ <artifactId >maven-javadoc-plugin</artifactId >
67+ <version >2.9.1</version >
68+ <executions >
69+ <execution >
70+ <id >attach-javadocs</id >
71+ <goals >
72+ <goal >jar</goal >
73+ </goals >
74+ </execution >
75+ </executions >
76+ </plugin >
77+ <plugin >
78+ <groupId >org.apache.maven.plugins</groupId >
79+ <artifactId >maven-gpg-plugin</artifactId >
80+ <version >1.6</version >
81+ <executions >
82+ <execution >
83+ <id >sign-artifacts</id >
84+ <phase >verify</phase >
85+ <goals >
86+ <goal >sign</goal >
87+ </goals >
88+ <configuration >
89+ <!-- Prevent gpg from using pinentry programs -->
90+ <gpgArguments >
91+ <arg >--pinentry-mode</arg >
92+ <arg >loopback</arg >
93+ </gpgArguments >
94+ </configuration >
95+ </execution >
96+ </executions >
97+ </plugin >
5198 </plugins >
5299 </build >
53100
You can’t perform that action at this time.
0 commit comments