Iterator-Maven Plugin Release 0.2
After some time enhancing the iterator-maven-plugin the time has come to release a new version The iterator-maven-plugin is available via Maven Central and can be used as any other maven plugin.
1<plugin>
2 <groupId>com.soebes.maven.plugins</groupId>
3 <artifactId>iterator-maven-plugin</artifactId>
4 <version>0.2</version>
5 <executions>
6 <execution>
7 <phase>package</phase>
8 <goals>
9 <goal>executor</goal>
10 </goals>
11 <configuration>
12 <items>
13 <item>test</item>
14 <item>prod</item>
15 <item>dev</item>
16 </items>
17
18 <pluginExecutors>
19 <pluginExecutor>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-assembly-plugin</artifactId>
23 <version>2.4</version>
24 </plugin>
25 <goal>single</goal>
26 <configuration>
27 <descriptors>
28 <descriptor>${project.basedir}/@item@.xml</descriptor>
29 </descriptors>
30 </configuration>
31 </pluginExecutor>
32 </pluginExecutors>
33 </configuration>
34 </execution>
35 </executions>
36</plugin>