|
185 | 185 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
186 | 186 | <version>2.2</version> |
187 | 187 | </extension> |
| 188 | + <extension> |
| 189 | + <groupId>org.apache.maven.wagon</groupId> |
| 190 | + <artifactId>wagon-ssh</artifactId> |
| 191 | + <version>2.4</version> |
| 192 | + </extension> |
188 | 193 | </extensions> |
189 | 194 | <pluginManagement> |
190 | 195 | <plugins> |
|
212 | 217 | </executions> |
213 | 218 | <configuration> |
214 | 219 | <detectLinks>true</detectLinks> |
215 | | - <!-- excludePackageNames>blabla</excludePackageNames --> |
216 | 220 | <keywords>true</keywords> |
217 | 221 | <linksource>true</linksource> |
218 | 222 | <failOnError>false</failOnError> |
219 | | - <!-- overview>${basedir}/overview.html</overview --> |
220 | 223 | <source>${maven.compile.sourceLevel}</source> |
221 | | - <!-- stylesheetfile>${basedir}/src/site/css/money-jdoc.css</stylesheetfile --> |
222 | 224 | <verbose>true</verbose> |
223 | 225 | </configuration> |
224 | 226 | </plugin> |
|
331 | 333 | <mavenExecutorId>forked-path</mavenExecutorId> |
332 | 334 | </configuration> |
333 | 335 | </plugin> |
| 336 | + <!-- ======================================================= --> |
| 337 | + <!-- Packaging (OSGi bundle) --> |
| 338 | + <!-- ======================================================= --> |
334 | 339 | <plugin> |
335 | 340 | <groupId>org.apache.felix</groupId> |
336 | 341 | <artifactId>maven-bundle-plugin</artifactId> |
337 | 342 | <version>2.5.3</version> |
338 | 343 | <extensions>true</extensions> |
339 | 344 | </plugin> |
340 | | - <plugin> |
341 | | - <groupId>org.codehaus.mojo</groupId> |
342 | | - <artifactId>dashboard-maven-plugin</artifactId> |
343 | | - <version>1.0.0-beta-1</version> |
344 | | - </plugin> |
345 | 345 | <plugin> |
346 | 346 | <groupId>org.apache.maven.plugins</groupId> |
347 | 347 | <artifactId>maven-site-plugin</artifactId> |
|
376 | 376 | <groupId>org.apache.maven.plugins</groupId> |
377 | 377 | <artifactId>maven-javadoc-plugin</artifactId> |
378 | 378 | </plugin> |
| 379 | + <!-- ======================================================= --> |
| 380 | + <!-- Packaging (OSGi bundle) --> |
| 381 | + <!-- ======================================================= --> |
| 382 | + <plugin> |
| 383 | + <groupId>org.apache.felix</groupId> |
| 384 | + <artifactId>maven-bundle-plugin</artifactId> |
| 385 | + </plugin> |
379 | 386 | <plugin> |
380 | 387 | <groupId>org.apache.maven.plugins</groupId> |
381 | 388 | <artifactId>maven-jar-plugin</artifactId> |
| 389 | + <configuration> |
| 390 | + <archive> |
| 391 | + <manifest> |
| 392 | + <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
| 393 | + </manifest> |
| 394 | + <manifestEntries> |
| 395 | + <Specification-Title>${project.name}</Specification-Title> |
| 396 | + <Specification-Version>${project.version}</Specification-Version> |
| 397 | + <Specification-Vendor>Credit Suisse AG</Specification-Vendor> |
| 398 | + <Implementation-Vendor>${project.organization.name}</Implementation-Vendor> |
| 399 | + <Implementation-URL>http://www.javamoney.org</Implementation-URL> |
| 400 | + </manifestEntries> |
| 401 | + </archive> |
| 402 | + </configuration> |
382 | 403 | </plugin> |
383 | 404 | </plugins> |
384 | 405 | </build> |
|
0 commit comments