benchmarks/matrix-multiplication/pom.xml
changeset 381 70d15cf323ba
parent 313 398110b3eee6
child 388 e1f64baf73b9
     1.1 --- a/benchmarks/matrix-multiplication/pom.xml	Wed Dec 12 20:35:01 2012 +0100
     1.2 +++ b/benchmarks/matrix-multiplication/pom.xml	Tue Dec 25 14:07:02 2012 +0100
     1.3 @@ -25,20 +25,6 @@
     1.4                 <target>1.7</target>
     1.5              </configuration>
     1.6            </plugin>
     1.7 -          
     1.8 -          <plugin>
     1.9 -              <groupId>org.apidesign.bck2brwsr</groupId>
    1.10 -              <artifactId>mojo</artifactId>
    1.11 -              <version>0.3-SNAPSHOT</version>
    1.12 -              <executions>
    1.13 -                  <execution>
    1.14 -                      <goals>
    1.15 -                          <goal>j2js</goal>
    1.16 -                      </goals>
    1.17 -                  </execution>
    1.18 -              </executions>
    1.19 -          </plugin>
    1.20 -          
    1.21        </plugins>
    1.22    </build>
    1.23    
    1.24 @@ -88,24 +74,22 @@
    1.25        <version>0.3-SNAPSHOT</version>
    1.26      </dependency>
    1.27      <dependency>
    1.28 -        <groupId>com.googlecode.jstd-maven-plugin</groupId>
    1.29 -        <artifactId>jstd-maven-plugin</artifactId>
    1.30 -        <version>1.3.2.5</version>
    1.31 -        <scope>test</scope>
    1.32 +      <groupId>org.testng</groupId>
    1.33 +      <artifactId>testng</artifactId>
    1.34 +      <version>6.5.2</version>
    1.35 +      <scope>test</scope>
    1.36 +      <exclusions>
    1.37 +        <exclusion>
    1.38 +          <artifactId>junit</artifactId>
    1.39 +          <groupId>junit</groupId>
    1.40 +        </exclusion>
    1.41 +      </exclusions>
    1.42 +    </dependency>
    1.43 +    <dependency>
    1.44 +      <groupId>org.apidesign.bck2brwsr</groupId>
    1.45 +      <artifactId>vmtest</artifactId>
    1.46 +      <version>0.3-SNAPSHOT</version>
    1.47 +      <scope>test</scope>
    1.48      </dependency>
    1.49    </dependencies>
    1.50 -  
    1.51 -  <repositories>
    1.52 -        <repository>
    1.53 -            <id>jstd-maven-plugin google code repo</id>
    1.54 -            <url>http://jstd-maven-plugin.googlecode.com/svn/maven2</url>
    1.55 -        </repository>
    1.56 -  </repositories>
    1.57 -  <pluginRepositories>
    1.58 -        <pluginRepository>
    1.59 -            <id>jstd-maven-plugin google code repo</id>
    1.60 -            <url>http://jstd-maven-plugin.googlecode.com/svn/maven2</url>
    1.61 -        </pluginRepository>
    1.62 -  </pluginRepositories>
    1.63 -  
    1.64  </project>