Exclude dependencies that aren't needed during runtime in a browser
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 29 Apr 2016 07:17:38 +0200
changeset 1959fbd86e4b4742
parent 1958 aa2e9630b6d5
child 1960 60cd3d14f1ae
Exclude dependencies that aren't needed during runtime in a browser
rt/emul/compact/pom.xml
     1.1 --- a/rt/emul/compact/pom.xml	Thu Apr 28 07:13:00 2016 +0200
     1.2 +++ b/rt/emul/compact/pom.xml	Fri Apr 29 07:17:38 2016 +0200
     1.3 @@ -26,12 +26,32 @@
     1.4        <artifactId>launcher.http</artifactId>
     1.5        <version>${project.version}</version>
     1.6        <scope>provided</scope>
     1.7 +      <exclusions>
     1.8 +        <exclusion>
     1.9 +          <groupId>org.apidesign.bck2brwsr</groupId>
    1.10 +          <artifactId>launcher.fx</artifactId>
    1.11 +        </exclusion>
    1.12 +        <exclusion>
    1.13 +          <groupId>org.glassfish.grizzly</groupId>
    1.14 +          <artifactId>grizzly-http-server</artifactId>
    1.15 +        </exclusion>
    1.16 +        <exclusion>
    1.17 +          <groupId>org.apidesign.bck2brwsr</groupId>
    1.18 +          <artifactId>aot</artifactId>
    1.19 +        </exclusion>
    1.20 +      </exclusions>
    1.21      </dependency>
    1.22      <dependency>
    1.23        <groupId>${project.groupId}</groupId>
    1.24        <artifactId>vm4brwsr</artifactId>
    1.25        <version>${project.version}</version>
    1.26        <scope>provided</scope>
    1.27 +      <exclusions>
    1.28 +        <exclusion>
    1.29 +          <groupId>com.google.javascript</groupId>
    1.30 +          <artifactId>closure-compiler</artifactId>
    1.31 +        </exclusion>
    1.32 +      </exclusions>
    1.33      </dependency>
    1.34      <dependency>
    1.35        <groupId>org.apidesign.bck2brwsr</groupId>