File tree 2 files changed +30
-1
lines changed 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 1
1
2
2
# Version 1.11 (unreleased)
3
3
4
+ \# 155: Add OSGI manifiest headers.
5
+ Thanks Abhishek Jain.
6
+
4
7
\# 153: New settings: http.maxConnections and http.connectionrequest.timeout
5
8
Thanks Gotzon Illarramendi.
6
9
Original file line number Diff line number Diff line change 119
119
</compilerArgs >
120
120
</configuration >
121
121
</plugin >
122
-
122
+ <!-- For OSGI -->
123
+ <plugin >
124
+ <groupId >org.apache.maven.plugins</groupId >
125
+ <artifactId >maven-jar-plugin</artifactId >
126
+ <configuration >
127
+ <archive >
128
+ <manifestEntries >
129
+ <Bundle-Version >${project.version} </Bundle-Version >
130
+ <Tool >Bundlor ${project.version} </Tool >
131
+ <Bundle-Name >${project.artifactId} </Bundle-Name >
132
+ <Bundle-SymbolicName >org.mitre.dsmiley.http-proxy-servlet</Bundle-SymbolicName >
133
+ <Export-Package >org.mitre.dsmiley.httpproxy;version="0"</Export-Package >
134
+ <Import-Package >org.apache.http;version="0",
135
+ org.apache.http.client;version="0",
136
+ org.apache.http.entity;version="0",
137
+ org.apache.http.impl.client;version="0",
138
+ org.apache.http.message;version="0",
139
+ org.apache.http.util; version="0",
140
+ org.apache.http.client.utils;version="0",
141
+ org.apache.http.client.methods;version="0",
142
+ javax.servlet;version="0",
143
+ javax.servlet.http;version="0",
144
+ javax.net.ssl;version="0", org.apache.http.client.config;version="0"</Import-Package >
145
+ </manifestEntries >
146
+ </archive >
147
+ </configuration >
148
+ </plugin >
123
149
<!-- See
124
150
http://central.sonatype.org/pages/apache-maven.html#nexus-staging-maven-plugin-for-deployment-and-release
125
151
You can’t perform that action at this time.
0 commit comments