Skip to content

Commit

Permalink
Remove gradle
Browse files Browse the repository at this point in the history
The bundled version is out of date. We should run with Gradle 8 instead.  Install via `brew install gradle`
  • Loading branch information
jcoyne committed Nov 28, 2023
1 parent cfa0f0c commit ba8cadd
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 300 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pipeline {

stage('Test') {
steps {
sh 'JAVA_OPTS= ./gradlew check'
sh 'JAVA_OPTS= gradle check'
}
}

Expand All @@ -25,7 +25,7 @@ pipeline {
}

steps {
sh 'JAVA_OPTS= ./gradlew distTar'
sh 'JAVA_OPTS= gradle distTar'
sh 'cp ./build/distributions/dlss-wowza-v*.tar /ci/artifacts/dlss-wowza/'
}
}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
[![GitHub version](https://badge.fury.io/gh/sul-dlss%2Fdlss-wowza.svg)](https://badge.fury.io/gh/sul-dlss%2Fdlss-wowza)

# dlss-wowza
Wowza server side modules. Uses Gradle (with the Gradle wrapper) as the build tool (akin to Ruby's rake).
Wowza server side modules. Uses Gradle as the build tool (akin to Ruby's rake).

### To compile and run tests of this code:

./gradlew build
gradle build

Before running this command, you'll need to set these environment variables:
- `WOWZA_HONEYBADGER_API_KEY`: You can get the API key from our [Honeybadger](https://www.honeybadger.io/) project (`DLSS-Wowza`). Note that you may need to get added to the `DLSS-Wowza` project as a user in order to obtain the key (someone from Devops should be able to add you).
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ dependencies {

jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
xml.required = true // coveralls plugin depends on xml format report
html.required = true
}
}

Expand Down
Binary file removed gradle/wrapper/dists/gradle-2.13-bin.zip
Binary file not shown.
Binary file removed gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 0 additions & 5 deletions gradle/wrapper/gradle-wrapper.properties

This file was deleted.

185 changes: 0 additions & 185 deletions gradlew

This file was deleted.

104 changes: 0 additions & 104 deletions gradlew.bat

This file was deleted.

0 comments on commit ba8cadd

Please sign in to comment.