<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<parent>
		<artifactId>converged-demo-parent</artifactId>
		<groupId>org.mobicents.examples.converged</groupId>
		<version>2.2.0.FINAL</version>
	</parent>

	<artifactId>converged-demo-slee-parent</artifactId>
	<groupId>org.mobicents.examples.converged</groupId>
	<version>2.2.0.FINAL</version>


	<packaging>pom</packaging>
	<name>Mobicents Servers Examples :: Converged :: ${pom.artifactId}</name>


	<modules>
		<module>events</module>
		<module>sbb</module>
		<module>du</module>
	</modules>

	<!--
		add this. <profiles> <profile> <id>release</id> <properties>
		<release.dir>${basedir}/../../release/${release.name}/examples/converged-demo</release.dir>
		</properties> <build> <plugins> <plugin>
		<artifactId>maven-antrun-plugin</artifactId>
		<inherited>false</inherited> <executions> <execution>
		<phase>install</phase> <goals> <goal>run</goal> </goals>
		<configuration> <tasks> <copy overwrite="true" todir="${release.dir}">
		<fileset dir="${basedir}/slee/events-du/target"> <include name="**.jar" /> <include name="*.xml" /> <include name="*.properties" /> </fileset> <fileset dir="${basedir}/slee/services-du/target">
		<include name="**.jar" /> <include name="*.xml" /> <include name="*.properties" /> </fileset> </copy> <copy overwrite="true" file="${basedir}/web/ear/datasource/ShoppingDemo-dev-ds.xml" todir="${release.dir}" /> <copy overwrite="true" file="${basedir}/web/ear/target/ShoppingDemo.ear" todir="${release.dir}" /> <copy overwrite="true" file="${basedir}/slee/events-du/target/build.xml" tofile="${release.dir}/events-du-management.xml" /> <copy overwrite="true" file="${basedir}/slee/services-du/target/build.xml" tofile="${release.dir}/services-du-management.xml" /> <copy overwrite="true" file="${basedir}/release/build.xml" todir="${release.dir}"> <filterset> <filter token="JBOSS.PATH" value="${jboss.path}" /> <filter token="JBOSS.CONFIG" value="${node}" /> </filterset> </copy> </tasks> </configuration> </execution>
		</executions> </plugin> </plugins> </build> </profile> </profiles>
	-->
</project>