29 lines
910 B
XML
29 lines
910 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-project</artifactId>
|
|
<version>0.1-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>kotlin-js-tools</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<description>
|
|
A project to make it easier to compile and test the JS standard library as a single, repeatable build
|
|
</description>
|
|
|
|
<modules>
|
|
<module>kotlin-js-library</module>
|
|
<module>kotlin-js-tests</module>
|
|
<module>kotlin-js-tests-junit</module>
|
|
</modules>
|
|
|
|
</project>
|