<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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.appdapter</groupId>
		<artifactId>org.appdapter.modules.core</artifactId>
		<version>1.1.5</version>
		<relativePath>../org.appdapter.modules.core/pom.xml</relativePath>
	</parent>
	<artifactId>org.appdapter.lib.bind.math</artifactId>
	<packaging>jar</packaging>

	<name>${project.artifactId} - POJO</name>


	<dependencies>
		<dependency>
            <groupId>org.appdapter</groupId>
			<artifactId>ext.bundle.math.jscience_50SNAP</artifactId>
     
            <!-- Freezing to the 1.0.9 version of JScience wrapper -->
            <version>${appdapter.jscience.version}</version>
            <!-- but dont let it use "runtime" classes that mismatch -->
            <exclusions>
              <!--
              <exclusion>
                <groupId>org.appdapter</groupId>
                <artifactId>org.appdapter.modules.math</artifactId>
              </exclusion>
              <exclusion>
                <groupId>org.appdapter</groupId>
                <artifactId>org.appdapter.modules.core</artifactId>
              </exclusion>
              <exclusion>
                <groupId>org.appdapter</groupId>
                <artifactId>org.appdapter.project.root</artifactId>
              </exclusion>
              <exclusion>
                <groupId>*</groupId>
                <artifactId>*</artifactId>
              </exclusion>
              -->
                <exclusion>
                    <artifactId>org.osgi.core</artifactId>
                    <groupId>org.apache.felix</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>log4j</artifactId>
                    <groupId>log4j</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>xercesImpl</artifactId>
                    <groupId>xerces</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>icu4j</artifactId>
                    <groupId>com.ibm.icu</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>slf4j-log4j12</artifactId>
                    <groupId>org.slf4j</groupId>
                </exclusion>
            </exclusions>    
		</dependency>

		<dependency>
			<groupId>${project.groupId}</groupId>
			<artifactId>org.appdapter.lib.core</artifactId>
			<version>${project.version}</version>
		</dependency>		  
		<dependency>
			<groupId>org.apache.servicemix.bundles</groupId>
			<artifactId>org.apache.servicemix.bundles.junit</artifactId>
			<version>4.7_3</version>
			<scope>test</scope>
		</dependency>
		
		<!-- SLF4J-Log4J runtime binding now received transitively from o.a.lib.core -->
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.scala-tools</groupId>
				<artifactId>maven-scala-plugin</artifactId>
				<version>2.15.2</version>
				<executions>
					<execution>
						<goals>
							<goal>compile</goal>
							<!-- Not currently using any tests
							<goal>testCompile</goal>
							--> 
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>  
</project>
