2013-12-20 00:45:28 -08:00
|
|
|
<!--
|
|
|
|
Copyright 2013 Alexey Andreev.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
2013-10-27 01:16:07 -07:00
|
|
|
<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">
|
2013-09-23 13:09:15 -07:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.teavm</groupId>
|
|
|
|
<artifactId>teavm</artifactId>
|
2014-03-18 14:48:43 -07:00
|
|
|
<version>0.2-SNAPSHOT</version>
|
2013-09-23 13:09:15 -07:00
|
|
|
</parent>
|
|
|
|
<artifactId>teavm-core</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2014-02-19 05:52:07 -08:00
|
|
|
<scope>provided</scope>
|
2013-09-23 13:09:15 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-03-14 11:24:25 -07:00
|
|
|
<groupId>org.ow2.asm</groupId>
|
2013-09-23 13:09:15 -07:00
|
|
|
<artifactId>asm-debug-all</artifactId>
|
2014-03-14 13:43:13 -07:00
|
|
|
</dependency>
|
2013-09-23 13:09:15 -07:00
|
|
|
</dependencies>
|
2014-03-05 00:54:26 -08:00
|
|
|
|
2014-03-19 12:14:12 -07:00
|
|
|
<name>TeaVM core</name>
|
|
|
|
<description>TeaVM compiler and SPI</description>
|
|
|
|
|
2014-03-05 00:54:26 -08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2014-03-18 14:37:07 -07:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>2.11</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>validate</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<configuration>
|
|
|
|
<propertyExpansion>config_loc=${basedir}</propertyExpansion>
|
|
|
|
<configLocation>checkstyle.xml</configLocation>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
<consoleOutput>true</consoleOutput>
|
|
|
|
<failsOnError>true</failsOnError>
|
|
|
|
<linkXRef>false</linkXRef>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2014-03-19 12:14:12 -07:00
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2014-03-18 14:37:07 -07:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2014-03-19 12:14:12 -07:00
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2014-03-18 14:37:07 -07:00
|
|
|
</plugin>
|
2014-03-05 00:54:26 -08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<version>2.5.2</version>
|
|
|
|
</plugin>
|
2014-03-18 14:37:07 -07:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.9.1</version>
|
|
|
|
<configuration>
|
|
|
|
<show>protected</show>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-03-05 00:54:26 -08:00
|
|
|
</plugins>
|
|
|
|
</reporting>
|
2014-03-19 12:14:12 -07:00
|
|
|
</project>
|