<artifactId>maven-bundle-plugin</artifactId>
</plugin>
<plugin>
- <groupId>org.sonatype.plugins</groupId>
- <artifactId>port-allocator-maven-plugin</artifactId>
- <version>1.1</version>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>1.7</version>
<executions>
<execution>
<id>allocate-ldap-port</id>
<phase>process-classes</phase>
<goals>
- <goal>allocate-ports</goal>
+ <goal>reserve-network-port</goal>
</goals>
<configuration>
- <ports>
- <port>
- <name>ldapPort</name>
- <portNumber>10390</portNumber>
- </port>
- </ports>
+ <portNames>
+ <portName>ldapPort</portName>
+ </portNames>
</configuration>
</execution>
</executions>