diff --git a/.idea/runConfigurations/build_teavm_fast.xml b/.idea/runConfigurations/build_teavm_fast.xml index f18528139..5489ca572 100644 --- a/.idea/runConfigurations/build_teavm_fast.xml +++ b/.idea/runConfigurations/build_teavm_fast.xml @@ -15,6 +15,7 @@ + diff --git a/.travis.yml b/.travis.yml index b924ce2f2..efc81cf22 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,6 @@ before_install: - rm -rf $HOME/.m2 install: - - $MVN_CMD install -Dteavm.build.all=false -P with-idea -P with-cli -DskipTests=true -Dmaven.javadoc.skip=true -V - pushd tests/src/test/js - npm config set prefix=$HOME/.node_modules - npm install @@ -44,7 +43,7 @@ install: - rm -rf tools/idea/idea-artifacts/dependencies script: - - $MVN_CMD -e test -Dteavm.junit.optimized=false -Dteavm.junit.js.runner=none + - $MVN_CMD -e install -Dteavm.junit.optimized=false -P with-idea -P with-cli -Dteavm.junit.js.runner=none -V - BASE_PATH=`pwd` - pushd tests/src/test/js - "export DISPLAY=:99.0" diff --git a/core/src/main/java/org/teavm/model/package-info.java b/core/src/main/java/org/teavm/model/package-info.java deleted file mode 100644 index a1d7c1dc1..000000000 --- a/core/src/main/java/org/teavm/model/package-info.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * 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. - */ -/** - * Represents a class model that is alternative to {@code java.lang.reflection} package. - * Model is suitable for representing classes that are not in class path. Also - * it allows to disassemble method bodies into three-address code that is very - * close to JVM bytecode (see {@code org.teavm.model.instructions}. - * - *
The entry point is some implementation of {@link org.teavm.model.ClassHolderSource} interface. - * - */ -package org.teavm.model; \ No newline at end of file