Don't try to generate your own jbox2d bck2brwsr library, use the jbox2d-osgi wrapper one
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 28 Mar 2016 05:56:31 +0200
changeset 1915c433787ebe2d
parent 1914 88b00e03fc8f
child 1916 a9d37af23a00
Don't try to generate your own jbox2d bck2brwsr library, use the jbox2d-osgi wrapper one
benchmarks/jbox2d/pom.xml
     1.1 --- a/benchmarks/jbox2d/pom.xml	Mon Mar 28 05:55:43 2016 +0200
     1.2 +++ b/benchmarks/jbox2d/pom.xml	Mon Mar 28 05:56:31 2016 +0200
     1.3 @@ -43,28 +43,10 @@
     1.4                <configuration>
     1.5                    <systemPropertyVariables>
     1.6                        <vmtest.js>brwsr</vmtest.js>
     1.7 +                      <vmtest.precompiled>.*</vmtest.precompiled>
     1.8                    </systemPropertyVariables>
     1.9                </configuration>
    1.10            </plugin>
    1.11 -          <plugin>
    1.12 -              <groupId>org.apidesign.bck2brwsr</groupId>
    1.13 -              <artifactId>bck2brwsr-maven-plugin</artifactId>
    1.14 -              <version>${project.version}</version>
    1.15 -              <executions>
    1.16 -                  <execution>
    1.17 -                      <goals>
    1.18 -                          <goal>library</goal>
    1.19 -                      </goals>
    1.20 -                  </execution>
    1.21 -              </executions>
    1.22 -              <configuration>
    1.23 -                  <aotDeps>
    1.24 -                      <aotDep>org.jbox2d:*</aotDep>
    1.25 -                  </aotDeps>
    1.26 -                  <minified>false</minified>
    1.27 -                  <debug>false</debug>
    1.28 -              </configuration>
    1.29 -          </plugin>
    1.30        </plugins>
    1.31    </build>
    1.32    
    1.33 @@ -106,6 +88,13 @@
    1.34      </dependency>
    1.35      <dependency>
    1.36        <groupId>org.apidesign.bck2brwsr</groupId>
    1.37 +      <artifactId>launcher.http</artifactId>
    1.38 +      <version>${project.version}</version>
    1.39 +      <classifier>bck2brwsr</classifier>
    1.40 +      <scope>test</scope>
    1.41 +    </dependency>
    1.42 +    <dependency>
    1.43 +      <groupId>org.apidesign.bck2brwsr</groupId>
    1.44        <artifactId>jbox2d-osgi</artifactId>
    1.45        <version>${project.version}</version>
    1.46        <exclusions>
    1.47 @@ -115,5 +104,11 @@
    1.48          </exclusion>
    1.49        </exclusions>
    1.50      </dependency>
    1.51 +    <dependency>
    1.52 +      <groupId>org.apidesign.bck2brwsr</groupId>
    1.53 +      <artifactId>jbox2d-osgi</artifactId>
    1.54 +      <version>${project.version}</version>
    1.55 +      <classifier>bck2brwsr</classifier>
    1.56 +    </dependency>
    1.57    </dependencies>
    1.58  </project>