mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-17 15:31:27 +00:00
update versions
junit.jupiter and adding assertj-core dependency for testing
This commit is contained in:
parent
9fc3dcb6cf
commit
bcaa2d1ef5
@ -10,6 +10,8 @@ dependencies {
|
|||||||
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.6.2'
|
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.6.2'
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
|
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
|
||||||
|
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
|
||||||
|
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.23.1'
|
||||||
}
|
}
|
||||||
|
|
||||||
group = 'com.gildedrose'
|
group = 'com.gildedrose'
|
||||||
@ -17,5 +19,13 @@ version = '0.0.1-SNAPSHOT'
|
|||||||
sourceCompatibility = '1.8'
|
sourceCompatibility = '1.8'
|
||||||
|
|
||||||
test {
|
test {
|
||||||
|
// Discover and execute JUnit4-based tests
|
||||||
|
useJUnit()
|
||||||
|
|
||||||
|
// Discover and execute TestNG-based tests
|
||||||
|
useTestNG()
|
||||||
|
|
||||||
|
// Discover and execute JUnit Platform-based (JUnit 5, JUnit Jupiter) tests
|
||||||
|
// Note that JUnit 5 has the ability to execute JUnit 4 tests as well
|
||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
}
|
}
|
||||||
|
|||||||
17
Java/pom.xml
17
Java/pom.xml
@ -11,19 +11,32 @@
|
|||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<java.version>1.8</java.version>
|
<java.version>1.8</java.version>
|
||||||
<junit.jupiter.version>5.8.2</junit.jupiter.version>
|
<junit.jupiter.version>5.9.0</junit.jupiter.version>
|
||||||
<maven.maven-compiler-plugin.version>3.1</maven.maven-compiler-plugin.version>
|
<maven.maven-compiler-plugin.version>3.1</maven.maven-compiler-plugin.version>
|
||||||
<maven.maven-surefire-plugin.version>3.0.0-M4</maven.maven-surefire-plugin.version>
|
<maven.maven-surefire-plugin.version>3.0.0-M4</maven.maven-surefire-plugin.version>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
<!--Optional: Supports running Junit4 along with Junit5 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.junit.jupiter</groupId>
|
<groupId>org.junit.jupiter</groupId>
|
||||||
<artifactId>junit-jupiter</artifactId>
|
<artifactId>junit-jupiter-engine</artifactId>
|
||||||
<version>${junit.jupiter.version}</version>
|
<version>${junit.jupiter.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-api</artifactId>
|
||||||
|
<version>${junit.jupiter.version}</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.assertj</groupId>
|
||||||
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>3.23.1</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user