Skip to content

Commit d37a364

Browse files
committed
Removed unused comments, added wagon-ssh extension.
1 parent a258d57 commit d37a364

File tree

1 file changed

+29
-8
lines changed

1 file changed

+29
-8
lines changed

pom.xml

Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,11 @@
185185
<artifactId>wagon-webdav-jackrabbit</artifactId>
186186
<version>2.2</version>
187187
</extension>
188+
<extension>
189+
<groupId>org.apache.maven.wagon</groupId>
190+
<artifactId>wagon-ssh</artifactId>
191+
<version>2.4</version>
192+
</extension>
188193
</extensions>
189194
<pluginManagement>
190195
<plugins>
@@ -212,13 +217,10 @@
212217
</executions>
213218
<configuration>
214219
<detectLinks>true</detectLinks>
215-
<!-- excludePackageNames>blabla</excludePackageNames -->
216220
<keywords>true</keywords>
217221
<linksource>true</linksource>
218222
<failOnError>false</failOnError>
219-
<!-- overview>${basedir}/overview.html</overview -->
220223
<source>${maven.compile.sourceLevel}</source>
221-
<!-- stylesheetfile>${basedir}/src/site/css/money-jdoc.css</stylesheetfile -->
222224
<verbose>true</verbose>
223225
</configuration>
224226
</plugin>
@@ -331,17 +333,15 @@
331333
<mavenExecutorId>forked-path</mavenExecutorId>
332334
</configuration>
333335
</plugin>
336+
<!-- ======================================================= -->
337+
<!-- Packaging (OSGi bundle) -->
338+
<!-- ======================================================= -->
334339
<plugin>
335340
<groupId>org.apache.felix</groupId>
336341
<artifactId>maven-bundle-plugin</artifactId>
337342
<version>2.5.3</version>
338343
<extensions>true</extensions>
339344
</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>
345345
<plugin>
346346
<groupId>org.apache.maven.plugins</groupId>
347347
<artifactId>maven-site-plugin</artifactId>
@@ -376,9 +376,30 @@
376376
<groupId>org.apache.maven.plugins</groupId>
377377
<artifactId>maven-javadoc-plugin</artifactId>
378378
</plugin>
379+
<!-- ======================================================= -->
380+
<!-- Packaging (OSGi bundle) -->
381+
<!-- ======================================================= -->
382+
<plugin>
383+
<groupId>org.apache.felix</groupId>
384+
<artifactId>maven-bundle-plugin</artifactId>
385+
</plugin>
379386
<plugin>
380387
<groupId>org.apache.maven.plugins</groupId>
381388
<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>
382403
</plugin>
383404
</plugins>
384405
</build>

0 commit comments

Comments
 (0)