Przeglądaj źródła

Define common test dependencies in the main pom file

Change-Id: I7d5897384f1172befbc852e27a7372104e7820da
tags/8.0.0.alpha1
Artur Signell 7 lat temu
rodzic
commit
a836efc40c
8 zmienionych plików z 43 dodań i 66 usunięć
  1. 0
    5
      client-compiler/pom.xml
  2. 0
    13
      client/pom.xml
  3. 30
    1
      pom.xml
  4. 6
    31
      server/pom.xml
  5. 0
    6
      shared/pom.xml
  6. 6
    0
      themes/pom.xml
  7. 1
    0
      uitest-common/pom.xml
  8. 0
    10
      uitest/pom.xml

+ 0
- 5
client-compiler/pom.xml Wyświetl plik

@@ -28,11 +28,6 @@
<groupId>com.vaadin</groupId>
<artifactId>vaadin-sass-compiler</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>

+ 0
- 13
client/pom.xml Wyświetl plik

@@ -36,19 +36,6 @@
</exclusions>
</dependency>

<!-- Testing dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>

<!-- Needed GWT dependencies, includes gwt-user -->
<dependency>
<groupId>com.google.gwt</groupId>

+ 30
- 1
pom.xml Wyświetl plik

@@ -257,8 +257,37 @@
<version>3.5.1.201410131835-r</version>
</dependency>
</dependencies>

</dependencyManagement>

<!-- Common test dependencies -->
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<pluginManagement>
<plugins>

+ 6
- 31
server/pom.xml Wyświetl plik

@@ -82,32 +82,7 @@

<!-- TESTING DEPENDENCIES -->

<!-- Test frameworks & related -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>test</scope>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
@@ -119,13 +94,13 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>test</scope>
</dependency>

@@ -134,7 +109,7 @@
</dependencies>

<build>
<plugins>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>

+ 0
- 6
shared/pom.xml Wyświetl plik

@@ -24,12 +24,6 @@
<artifactId>gwt-elemental</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>

+ 6
- 0
themes/pom.xml Wyświetl plik

@@ -41,6 +41,12 @@
<artifactId>smartsprites</artifactId>
<scope>provided</scope>
</dependency>
<!-- smartsprites dependency -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

<build>

+ 1
- 0
uitest-common/pom.xml Wyświetl plik

@@ -41,6 +41,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>

+ 0
- 10
uitest/pom.xml Wyświetl plik

@@ -165,16 +165,6 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>

Ładowanie…
Anuluj
Zapisz