<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>
    <groupId>org.objectweb.think.minus.applications.L4</groupId>
    <artifactId>sources</artifactId>
    <version>1.0</version>
  </parent>

  <groupId>org.objectweb.think.minus.applications.L4</groupId>
  <artifactId>arch</artifactId>
  <name>Architecture-dependent part of L4.</name>
  <packaging>pom</packaging>

  <description>
    This module contains only the sources and tests specific to the supported architectures.
  </description>

  <inceptionYear>2007</inceptionYear>

	<profiles>
		<profile>
			<id>lxsimenv</id>

			<activation>
				<property>
					<name>!skip-lxsimenv</name>
				</property>
			</activation>

			<modules>
				<module>st200</module>
			</modules>

		</profile>

		<profile>
			<id>stm8010</id>

			<activation>
				<property>
					<name>!skip-stm8010</name>
				</property>
			</activation>

			<modules>
				<module>st200</module>
			</modules>

		</profile>
	</profiles>
	
</project>