File tree Expand file tree Collapse file tree 2 files changed +46
-30
lines changed Expand file tree Collapse file tree 2 files changed +46
-30
lines changed Original file line number Diff line number Diff line change 1
- <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/xsd/maven-4.0.0.xsd" >
1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
2
3
<parent >
3
4
<groupId >org.asynchttpclient</groupId >
4
5
<artifactId >async-http-client-project</artifactId >
15
16
<plugins >
16
17
<plugin >
17
18
<artifactId >maven-jar-plugin</artifactId >
18
- <configuration >
19
- <excludes >
20
- <exclude >**/NettyAsyncHttpProvider.class</exclude >
21
- </excludes >
22
- </configuration >
23
19
<executions >
24
20
<execution >
25
21
<goals >
28
24
</execution >
29
25
</executions >
30
26
</plugin >
27
+ <plugin >
28
+ <artifactId >maven-antrun-plugin</artifactId >
29
+ <executions >
30
+ <execution >
31
+ <phase >process-classes</phase >
32
+ <goals >
33
+ <goal >run</goal >
34
+ </goals >
35
+ </execution >
36
+ </executions >
37
+ <configuration >
38
+ <tasks >
39
+ <delete >
40
+ <fileset
41
+ dir=" ${project.build.outputDirectory}/org/asynchttpclient/netty"
42
+ includes=" NettyAsyncHttpProvider.*" />
43
+ </delete >
44
+ </tasks >
45
+ </configuration >
46
+ </plugin >
31
47
</plugins >
32
48
</build >
33
49
</project >
Original file line number Diff line number Diff line change 161
161
</execution >
162
162
</executions >
163
163
</plugin >
164
- <!-- <plugin> -- >
165
- <!-- <groupId>org.apache.felix</groupId> -- >
166
- <!-- <artifactId>maven-bundle-plugin</artifactId> -- >
167
- <!-- <version>2.5.4</version> -- >
168
- <!-- <extensions>true</extensions> -- >
169
- <!-- <configuration> -- >
170
- <!-- <manifestLocation>META-INF</manifestLocation> -- >
171
- <!-- <instructions> -- >
172
- <!-- <Bundle-Version> -- >
173
- <!-- $(replace;$(project.version);-SNAPSHOT;.$(tstamp;yyyyMMdd-HHmm)) -->
174
- <!-- </Bundle-Version> -- >
175
- <!-- <Bundle-Vendor>Sonatype</Bundle-Vendor> -- >
176
- <!-- </instructions> -- >
177
- <!-- </configuration> -- >
178
- <!-- <executions> -- >
179
- <!-- <execution> -- >
180
- <!-- <id>osgi-bundle</id> -- >
181
- <!-- <phase>package</phase> -- >
182
- <!-- <goals> -- >
183
- <!-- <goal>bundle</goal> -- >
184
- <!-- </goals> -- >
185
- <!-- </execution> -- >
186
- <!-- </executions> -- >
187
- <!-- </plugin> -- >
164
+ <plugin >
165
+ <groupId >org.apache.felix</groupId >
166
+ <artifactId >maven-bundle-plugin</artifactId >
167
+ <version >2.5.4</version >
168
+ <extensions >true</extensions >
169
+ <configuration >
170
+ <manifestLocation >META-INF</manifestLocation >
171
+ <instructions >
172
+ <Bundle-Version >
173
+ $(replace;$(project.version);-SNAPSHOT;.$(tstamp;yyyyMMdd-HHmm))
174
+ </Bundle-Version >
175
+ <Bundle-Vendor >Sonatype</Bundle-Vendor >
176
+ </instructions >
177
+ </configuration >
178
+ <executions >
179
+ <execution >
180
+ <id >osgi-bundle</id >
181
+ <phase >package</phase >
182
+ <goals >
183
+ <goal >bundle</goal >
184
+ </goals >
185
+ </execution >
186
+ </executions >
187
+ </plugin >
188
188
<plugin >
189
189
<artifactId >maven-enforcer-plugin</artifactId >
190
190
<version >1.4</version >
You can’t perform that action at this time.
0 commit comments