ko/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 27 Apr 2016 07:28:33 +0200
changeset 1949 72ef454e3987
parent 1941 621825e167d7
child 1961 e9e1b1e863ba
permissions -rw-r--r--
Sample ko application is using JDK8 features. Disable it on JDK7
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <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">
     3   <modelVersion>4.0.0</modelVersion>
     4   <groupId>org.apidesign.bck2brwsr</groupId>
     5   <artifactId>ko</artifactId>
     6   <version>1.0-SNAPSHOT</version>
     7   <packaging>pom</packaging>
     8   <name>Bck2Brwsr Knockout Support</name>
     9   <parent>
    10     <groupId>org.apidesign</groupId>
    11     <artifactId>bck2brwsr</artifactId>
    12     <version>1.0-SNAPSHOT</version>
    13   </parent>  
    14   <modules>
    15     <module>bck2brwsr</module>
    16     <module>fx</module>
    17   </modules>
    18   <profiles>
    19       <profile>
    20           <activation>
    21               <jdk>1.8</jdk>
    22           </activation>
    23           <modules>
    24               <module>kosample</module>
    25           </modules>
    26       </profile>
    27   </profiles>
    28 </project>