File tree Expand file tree Collapse file tree 2 files changed +53
-14
lines changed Expand file tree Collapse file tree 2 files changed +53
-14
lines changed Original file line number Diff line number Diff line change 48
48
</resource >
49
49
</resources >
50
50
<plugins >
51
- <plugin >
52
- <artifactId >maven-source-plugin</artifactId >
53
- <version >3.2.1</version >
54
- <executions >
55
- <execution >
56
- <goals ><goal >jar</goal ></goals >
57
- </execution >
58
- </executions >
59
- </plugin >
60
51
<plugin >
61
52
<artifactId >maven-plugin-plugin</artifactId >
62
53
<version >3.9.0</version >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
3
3
<modelVersion >4.0.0</modelVersion >
4
- <parent >
5
- <groupId >org.sonatype.oss</groupId >
6
- <artifactId >oss-parent</artifactId >
7
- <version >7</version >
8
- </parent >
9
4
<groupId >org.jruby.maven</groupId >
10
5
<artifactId >jruby-maven-plugins</artifactId >
11
6
<packaging >pom</packaging >
148
143
</plugin >
149
144
</plugins >
150
145
</pluginManagement >
146
+ <plugins >
147
+ <plugin >
148
+ <groupId >org.sonatype.central</groupId >
149
+ <artifactId >central-publishing-maven-plugin</artifactId >
150
+ <version >0.8.0</version >
151
+ <extensions >true</extensions >
152
+ <configuration >
153
+ <publishingServerId >central</publishingServerId >
154
+ </configuration >
155
+ </plugin >
156
+ <plugin >
157
+ <artifactId >maven-gpg-plugin</artifactId >
158
+ <version >1.6</version >
159
+ <executions >
160
+ <execution >
161
+ <id >sign-artifacts</id >
162
+ <phase >verify</phase >
163
+ <goals >
164
+ <goal >sign</goal >
165
+ </goals >
166
+ </execution >
167
+ </executions >
168
+ <configuration >
169
+ <gpgArguments >
170
+ <gpgArgument >--pinentry-mode</gpgArgument >
171
+ <gpgArgument >loopback</gpgArgument >
172
+ </gpgArguments >
173
+ </configuration >
174
+ </plugin >
175
+ <plugin >
176
+ <artifactId >maven-javadoc-plugin</artifactId >
177
+ <executions >
178
+ <execution >
179
+ <id >attach-javadocs</id >
180
+ <goals >
181
+ <goal >jar</goal >
182
+ </goals >
183
+ </execution >
184
+ </executions >
185
+ <configuration >
186
+ <doclint >none</doclint >
187
+ </configuration >
188
+ </plugin >
189
+ <plugin >
190
+ <artifactId >maven-source-plugin</artifactId >
191
+ <version >3.2.1</version >
192
+ <executions >
193
+ <execution >
194
+ <goals ><goal >jar</goal ></goals >
195
+ </execution >
196
+ </executions >
197
+ </plugin >
198
+ </plugins >
151
199
</build >
152
200
153
201
<properties >
You can’t perform that action at this time.
0 commit comments