File tree 1 file changed +48
-1
lines changed
1 file changed +48
-1
lines changed Original file line number Diff line number Diff line change 5
5
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
6
6
<modelVersion >4.0.0</modelVersion >
7
7
8
- <groupId >software.amazon.cloudformation.test </groupId >
8
+ <groupId >software.amazon.cloudformation</groupId >
9
9
<artifactId >cloudformation-cli-java-plugin-testing-support</artifactId >
10
10
<name >aws-cloudformation-local-test</name >
11
11
<version >1.0.0</version >
22
22
<mockito .version>2.26.0</mockito .version>
23
23
<jackson .version>2.10.1</jackson .version>
24
24
<maven-javadoc-plugin .version>3.1.1</maven-javadoc-plugin .version>
25
+ <maven-source-plugin .version>3.0.1</maven-source-plugin .version>
25
26
</properties >
26
27
27
28
<dependencies >
196
197
</execution >
197
198
</executions >
198
199
</plugin >
200
+ <plugin >
201
+ <groupId >org.apache.maven.plugins</groupId >
202
+ <artifactId >maven-source-plugin</artifactId >
203
+ <version >${maven-source-plugin.version} </version >
204
+ <executions >
205
+ <execution >
206
+ <id >attach-sources</id >
207
+ <goals >
208
+ <goal >jar</goal >
209
+ </goals >
210
+ </execution >
211
+ </executions >
212
+ </plugin >
199
213
</plugins >
200
214
</build >
215
+ <profiles >
216
+ <profile >
217
+ <id >publishing</id >
218
+ <build >
219
+ <plugins >
220
+ <plugin >
221
+ <groupId >org.apache.maven.plugins</groupId >
222
+ <artifactId >maven-gpg-plugin</artifactId >
223
+ <version >1.6</version >
224
+ <executions >
225
+ <execution >
226
+ <id >sign-artifacts</id >
227
+ <phase >verify</phase >
228
+ <goals >
229
+ <goal >sign</goal >
230
+ </goals >
231
+ </execution >
232
+ </executions >
233
+ </plugin >
234
+ <plugin >
235
+ <groupId >org.sonatype.plugins</groupId >
236
+ <artifactId >nexus-staging-maven-plugin</artifactId >
237
+ <version >1.6.8</version >
238
+ <extensions >true</extensions >
239
+ <configuration >
240
+ <serverId >sonatype-nexus-staging</serverId >
241
+ <nexusUrl >https://aws.oss.sonatype.org</nexusUrl >
242
+ </configuration >
243
+ </plugin >
244
+ </plugins >
245
+ </build >
246
+ </profile >
247
+ </profiles >
201
248
</project >
You can’t perform that action at this time.
0 commit comments