19 lines
615 B
Groovy
19 lines
615 B
Groovy
/*
|
|
* Copyright (c) 2021 William Hubbard. All Rights Reserved.
|
|
*/
|
|
|
|
/*
|
|
* This build file was generated by the Gradle 'init' task.
|
|
*
|
|
* This generated file contains a commented-out sample Java project to get you started.
|
|
* For more details take a look at the Java Quickstart chapter in the Gradle
|
|
* user guide available at https://docs.gradle.org/4.4.1/userguide/tutorial_java_projects.html
|
|
*/
|
|
ext.defaultPackage = "edu.regis.universeplayer"
|
|
|
|
task bundleAddOn(type: Zip)
|
|
{
|
|
archiveName = "universal_music@regis.edu.xpi"
|
|
destinationDir = file("./browser/profile/extensions")
|
|
from (files("./add-on"))
|
|
} |