Created
July 13, 2016 18:19
-
-
Save nblair/9ffb8f1709bb4ccf1f0f148639d87d57 to your computer and use it in GitHub Desktop.
Sample Gradle configuration for https://github.com/craigburke/bower-installer-gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
id 'com.craigburke.bower-installer' version '2.5.1' | |
} | |
bower { | |
installBase = 'src/main/resources/static/bower_components' | |
// any changes to bower dependencies must also be manually copied to src/main/resources/bower.json | |
'angular'('~1.5.5') { | |
source 'angular.min.js' | |
} | |
'angular-animate'('~1.5.5') { | |
source 'angular-animate.min.js' | |
} | |
'angular-aria'('~1.5.5') { | |
source 'angular-aria.min.js' | |
} | |
'angular-route'('~1.5.5') { | |
source 'angular-route.min.js' | |
} | |
'angular-loader'('~1.5.5') { | |
source 'angular-loader.min.js' | |
} | |
'angular-mocks'('~1.5.5') { | |
source 'angular-mocks.min.js' | |
} | |
'angulartics'('~1.0.3') { | |
source 'angulartics.min.js' | |
} | |
'angulartics-google-analytics'('0.2.0') { | |
source 'angulartics-google-analytics.min.js' | |
} | |
'html5-boilerplate'('5.3.0') { | |
// without '>>', modernizr-2.8.3.min.js would sit at the root of the folder | |
// this syntax preserves the path that a cli 'bower install' would produce | |
source 'dist/js/vendor/modernizr-2.8.3.min.js' >> 'dist/js/vendor/modernizr-2.8.3.min.js' | |
} | |
'angular-material'('1.0.7') { | |
source 'angular-material.min.js' | |
source 'angular-material.min.css' | |
} | |
'uw-ui-toolkit'('0.4.1') { | |
// same use of '>>' to preserve same paths as cli 'bower install' | |
source 'dist/css/uw-ui-toolkit.min.css' >> 'dist/css/uw-ui-toolkit.min.css' | |
source 'dist/js/uw-ui-toolkit.min.js' >> 'dist/js/uw-ui-toolkit.min.js' | |
source 'dist/img/uwcrest_web_sm.png' >> 'dist/img/uwcrest_web_sm.png' | |
} | |
'moment'('2.12.0') | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment