Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaasuni-vonage committed Feb 7, 2024
1 parent 06f1fe2 commit c9426ee
Show file tree
Hide file tree
Showing 10 changed files with 218 additions and 169 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.22
1.5.23
2 changes: 1 addition & 1 deletion c/doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ PROJECT_NAME = "NumKey"
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 1.5.22
PROJECT_NUMBER = 1.5.23

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/Vonage/numkey

go 1.21
go 1.22

require (
github.com/jstemmer/go-junit-report v1.0.0
Expand Down
12 changes: 9 additions & 3 deletions java/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ help:
@echo "NumKey Java Makefile."
@echo "The following commands are available:"
@echo ""
@echo " make build : Build the library"
@echo " make clean : Remove any build artifact"
@echo " make test : Run the unit tests against source code"
@echo " make build : Build the library"
@echo " make clean : Remove any build artifact"
@echo " make test : Run the unit tests against source code"
@echo " make updategradle : Update gradle wrapper to the latest version"
@echo ""

all: clean build test
Expand All @@ -35,3 +36,8 @@ clean:
.PHONY: test
test:
./gradlew test

# Update gradle wrapper to the latest version
.PHONY: updategradle
updategradle:
./gradlew wrapper --gradle-version latest
23 changes: 3 additions & 20 deletions java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,31 +12,14 @@ plugins {
}

repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
mavenCentral()
google()
}

dependencies {
// This dependency is exported to consumers, that is to say found on their compile classpath.
api 'org.apache.commons:commons-math3:3.6.1'

// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation 'com.google.guava:guava:32.1.1-jre'

// Use JUnit test framework
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'

// Use JUnitParams
testImplementation 'pl.pragmatists:JUnitParams:1.1.1'
}

sourceSets.all {
configurations.getByName(runtimeClasspathConfigurationName) {
attributes.attribute(Attribute.of("org.gradle.jvm.environment", String), "standard-jvm")
}
configurations.getByName(compileClasspathConfigurationName) {
attributes.attribute(Attribute.of("org.gradle.jvm.environment", String), "standard-jvm")
}
}
Binary file modified java/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 3 additions & 1 deletion java/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit c9426ee

Please sign in to comment.