File tree Expand file tree Collapse file tree 12 files changed +202
-10
lines changed Expand file tree Collapse file tree 12 files changed +202
-10
lines changed Original file line number Diff line number Diff line change 113
113
<scope >test</scope >
114
114
</dependency >
115
115
</dependencies >
116
- </project >
116
+
117
+ </project >
Original file line number Diff line number Diff line change 181
181
</build >
182
182
183
183
184
- </project >
184
+ </project >
Original file line number Diff line number Diff line change 44
44
<module >profiles</module >
45
45
<module >regions</module >
46
46
</modules >
47
+
48
+ <build >
49
+ <plugins >
50
+ <plugin >
51
+ <groupId >org.apache.maven.plugins</groupId >
52
+ <artifactId >maven-jar-plugin</artifactId >
53
+ <configuration >
54
+ <archive >
55
+ <manifestFile >${project.build.outputDirectory} /META-INF/MANIFEST.MF</manifestFile >
56
+ </archive >
57
+ </configuration >
58
+ </plugin >
59
+ <plugin >
60
+ <groupId >org.apache.felix</groupId >
61
+ <artifactId >maven-bundle-plugin</artifactId >
62
+ <executions >
63
+ <execution >
64
+ <id >bundle-manifest</id >
65
+ <phase >process-classes</phase >
66
+ <goals >
67
+ <goal >manifest</goal >
68
+ </goals >
69
+ </execution >
70
+ </executions >
71
+ </plugin >
72
+ </plugins >
73
+ </build >
47
74
</project >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<!--
3
3
~ Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
- ~
4
+ ~
5
5
~ Licensed under the Apache License, Version 2.0 (the "License").
6
6
~ You may not use this file except in compliance with the License.
7
7
~ A copy of the License is located at
8
- ~
8
+ ~
9
9
~ http://aws.amazon.com/apache2.0
10
- ~
10
+ ~
11
11
~ or in the "license" file accompanying this file. This file is distributed
12
12
~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13
13
~ express or implied. See the License for the specific language governing
94
94
<scope >test</scope >
95
95
</dependency >
96
96
</dependencies >
97
- </project >
97
+ </project >
Original file line number Diff line number Diff line change 56
56
<finalName >aws-flow-java</finalName >
57
57
</configuration >
58
58
</plugin >
59
+
60
+ <plugin >
61
+ <groupId >org.apache.maven.plugins</groupId >
62
+ <artifactId >maven-jar-plugin</artifactId >
63
+ <version >3.1.0</version >
64
+ <configuration >
65
+ <archive >
66
+ <manifestFile >${project.build.outputDirectory} /META-INF/MANIFEST.MF</manifestFile >
67
+ </archive >
68
+ </configuration >
69
+ </plugin >
70
+ <plugin >
71
+ <groupId >org.apache.felix</groupId >
72
+ <artifactId >maven-bundle-plugin</artifactId >
73
+ <version >3.5.1</version >
74
+ <executions >
75
+ <execution >
76
+ <id >bundle-manifest</id >
77
+ <phase >process-classes</phase >
78
+ <goals >
79
+ <goal >manifest</goal >
80
+ </goals >
81
+ </execution >
82
+ </executions >
83
+ </plugin >
59
84
</plugins >
60
85
</build >
61
86
73
98
<scope >test</scope >
74
99
</dependency >
75
100
</dependencies >
76
- </project >
101
+ </project >
Original file line number Diff line number Diff line change 61
61
</dependency >
62
62
</dependencies >
63
63
64
+ <build >
65
+ <plugins >
66
+ <plugin >
67
+ <groupId >org.apache.maven.plugins</groupId >
68
+ <artifactId >maven-jar-plugin</artifactId >
69
+ <configuration >
70
+ <archive >
71
+ <manifestFile >${project.build.outputDirectory} /META-INF/MANIFEST.MF</manifestFile >
72
+ </archive >
73
+ </configuration >
74
+ </plugin >
75
+ <plugin >
76
+ <groupId >org.apache.felix</groupId >
77
+ <artifactId >maven-bundle-plugin</artifactId >
78
+ <executions >
79
+ <execution >
80
+ <id >bundle-manifest</id >
81
+ <phase >process-classes</phase >
82
+ <goals >
83
+ <goal >manifest</goal >
84
+ </goals >
85
+ </execution >
86
+ </executions >
87
+ </plugin >
88
+ </plugins >
89
+ </build >
90
+
64
91
</project >
Original file line number Diff line number Diff line change 79
79
</dependency >
80
80
</dependencies >
81
81
82
+ <build >
83
+ <plugins >
84
+ <plugin >
85
+ <groupId >org.apache.felix</groupId >
86
+ <artifactId >maven-bundle-plugin</artifactId >
87
+ <configuration >
88
+ <instructions >
89
+ <Require-Capability >osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)"</Require-Capability >
90
+ <Provide-Capability >osgi.serviceloader; osgi.serviceloader=software.amazon.awssdk.http.SdkHttpService</Provide-Capability >
91
+ </instructions >
92
+ </configuration >
93
+ </plugin >
94
+ </plugins >
95
+ </build >
96
+
82
97
</project >
Original file line number Diff line number Diff line change 156
156
<groupId >org.codehaus.mojo</groupId >
157
157
<artifactId >build-helper-maven-plugin</artifactId >
158
158
</plugin >
159
+ <plugin >
160
+ <groupId >org.apache.felix</groupId >
161
+ <artifactId >maven-bundle-plugin</artifactId >
162
+ <configuration >
163
+ <instructions >
164
+ <Require-Capability >osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)"</Require-Capability >
165
+ <Provide-Capability >osgi.serviceloader; osgi.serviceloader=software.amazon.awssdk.http.SdkAsyncHttpService</Provide-Capability >
166
+ </instructions >
167
+ </configuration >
168
+ </plugin >
159
169
</plugins >
160
170
</build >
161
171
</project >
Original file line number Diff line number Diff line change 39
39
<module >url-connection-client</module >
40
40
</modules >
41
41
42
-
43
- </project >
42
+ <build >
43
+ <plugins >
44
+ <plugin >
45
+ <groupId >org.apache.maven.plugins</groupId >
46
+ <artifactId >maven-jar-plugin</artifactId >
47
+ <configuration >
48
+ <archive >
49
+ <manifestFile >${project.build.outputDirectory} /META-INF/MANIFEST.MF</manifestFile >
50
+ </archive >
51
+ </configuration >
52
+ </plugin >
53
+ <plugin >
54
+ <groupId >org.apache.felix</groupId >
55
+ <artifactId >maven-bundle-plugin</artifactId >
56
+ <executions >
57
+ <execution >
58
+ <id >bundle-manifest</id >
59
+ <phase >process-classes</phase >
60
+ <goals >
61
+ <goal >manifest</goal >
62
+ </goals >
63
+ </execution >
64
+ </executions >
65
+ </plugin >
66
+ </plugins >
67
+ </build >
68
+ </project >
Original file line number Diff line number Diff line change 112
112
<maven-compiler-plugin .version>3.8.0</maven-compiler-plugin .version>
113
113
<maven-checkstyle-plugin .version>2.17</maven-checkstyle-plugin .version>
114
114
<maven-failsafe-plugin .version>2.19.1</maven-failsafe-plugin .version>
115
+ <maven-jar-plugin .version>3.1.0</maven-jar-plugin .version>
116
+ <maven-bundle-plugin .version>3.5.1</maven-bundle-plugin .version>
115
117
<maven-javadoc-plugin .version>3.0.1</maven-javadoc-plugin .version>
116
118
<maven-dependency-plugin .version>3.1.1</maven-dependency-plugin .version>
117
119
<checkstyle .version>7.8.2</checkstyle .version>
523
525
<failOnViolation >true</failOnViolation >
524
526
</configuration >
525
527
</plugin >
528
+ <plugin >
529
+ <groupId >org.apache.maven.plugins</groupId >
530
+ <artifactId >maven-jar-plugin</artifactId >
531
+ <version >${maven-jar-plugin.version} </version >
532
+ </plugin >
533
+ <plugin >
534
+ <groupId >org.apache.felix</groupId >
535
+ <artifactId >maven-bundle-plugin</artifactId >
536
+ <version >${maven-bundle-plugin.version} </version >
537
+ </plugin >
526
538
</plugins >
527
539
</pluginManagement >
528
540
Original file line number Diff line number Diff line change 308
308
<groupId >org.codehaus.mojo</groupId >
309
309
<artifactId >build-helper-maven-plugin</artifactId >
310
310
</plugin >
311
+ <plugin >
312
+ <groupId >org.apache.maven.plugins</groupId >
313
+ <artifactId >maven-jar-plugin</artifactId >
314
+ <configuration >
315
+ <archive >
316
+ <manifestFile >${project.build.outputDirectory} /META-INF/MANIFEST.MF</manifestFile >
317
+ </archive >
318
+ </configuration >
319
+ </plugin >
320
+ <plugin >
321
+ <groupId >org.apache.felix</groupId >
322
+ <artifactId >maven-bundle-plugin</artifactId >
323
+ <executions >
324
+ <execution >
325
+ <id >bundle-manifest</id >
326
+ <phase >process-classes</phase >
327
+ <goals >
328
+ <goal >manifest</goal >
329
+ </goals >
330
+ </execution >
331
+ </executions >
332
+ </plugin >
311
333
</plugins >
312
334
</build >
313
335
Original file line number Diff line number Diff line change 73
73
<scope >test</scope >
74
74
</dependency >
75
75
</dependencies >
76
- </project >
76
+
77
+ <build >
78
+ <plugins >
79
+ <plugin >
80
+ <groupId >org.apache.maven.plugins</groupId >
81
+ <artifactId >maven-jar-plugin</artifactId >
82
+ <configuration >
83
+ <archive >
84
+ <manifestFile >${project.build.outputDirectory} /META-INF/MANIFEST.MF</manifestFile >
85
+ </archive >
86
+ </configuration >
87
+ </plugin >
88
+ <plugin >
89
+ <groupId >org.apache.felix</groupId >
90
+ <artifactId >maven-bundle-plugin</artifactId >
91
+ <executions >
92
+ <execution >
93
+ <id >bundle-manifest</id >
94
+ <phase >process-classes</phase >
95
+ <goals >
96
+ <goal >manifest</goal >
97
+ </goals >
98
+ </execution >
99
+ </executions >
100
+ </plugin >
101
+ </plugins >
102
+ </build >
103
+
104
+ </project >
You can’t perform that action at this time.
0 commit comments