Skip to content

Commit

Permalink
Updating Gradle and Junit versions
Browse files Browse the repository at this point in the history
  • Loading branch information
josdem committed Apr 10, 2024
1 parent a6880e7 commit d40abcb
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions simple-algorithms/counting-numbers/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ plugins {
id 'java'
}

def junitJupiterVersion = '5.7.0'
def junitJupiterVersion = '5.10.2'

group 'com.jos.dem.kata'
group 'com.josdem.kata'
version '1.0-SNAPSHOT'

repositories {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Empty file modified simple-algorithms/counting-numbers/gradlew
100644 → 100755
Empty file.
Empty file modified simple-algorithms/counting-numbers/gradlew.bat
100644 → 100755
Empty file.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.josdem.kata;

import java.util.Arrays;
import java.util.List;

public class NumbersCounter {

public List<Integer> count(List<Integer> numbers) {
return numbers;
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.jos.dem.kata;
package com.josdem.kata;

import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
Expand Down

0 comments on commit d40abcb

Please sign in to comment.