Skip to content

Commit

Permalink
move tests to common tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vikasgupta78 committed Feb 18, 2024
1 parent 3a79946 commit 2184a84
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
34 changes: 34 additions & 0 deletions common/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,39 @@
<artifactId>httpclient</artifactId>
<version>4.5.14</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
8 changes: 8 additions & 0 deletions spark/spark-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@
<artifactId>zingg-common-client</artifactId>
<version>${zingg.version}</version>
</dependency>
<dependency>
<groupId>zingg</groupId>
<artifactId>zingg-common-core</artifactId>
<classifier>tests</classifier>
<type>test-jar</type>
<version>${zingg.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>zingg</groupId>
<artifactId>zingg-common-test</artifactId>
Expand Down

0 comments on commit 2184a84

Please sign in to comment.