mirror of
https://github.com/konsoletyper/teavm.git
synced 2024-11-21 01:00:54 +08:00
03afce4a12
compile it due to missing JCL classes.
54 lines
1.4 KiB
XML
54 lines
1.4 KiB
XML
<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>
|
|
|
|
<groupId>org.teavm</groupId>
|
|
<artifactId>teavm</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>teavm-core</module>
|
|
<module>teavm-classlib</module>
|
|
<module>teavm-maven-plugin</module>
|
|
<module>teavm-samples</module>
|
|
<module>teavm-dom</module>
|
|
<module>teavm-jso</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.5.1</version>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>enable-html4j-support</id>
|
|
<modules>
|
|
<module>teavm-html4j</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>enable-scala</id>
|
|
<modules>
|
|
<module>teavm-scala-samples</module>
|
|
</modules>
|
|
</profile>
|
|
</profiles>
|
|
</project> |