gradle-init-scripts is no longer actively maintained by VMware, Inc.
Gradle init scripts, as deployed to https://repo.spring.io/gradle-init-scripts. Note that authentication is required for the gradle-init-scripts repository, meaning that only SpringSource employees will have access. This is because the files are deployed as filtered resources within Artifactory, allowing dynamic content such as one's Artifactory username and password information to be customized on the fly during download. Requiring users to authenticate ensures that this filtering happens properly.
init.gradle
Purpose
init.gradle decorates any maven repositories declared in your project's Gradle build scripts, adding your Artifactory username and password credentials. This is important because most of the repositories at repo.spring.io are configured in such a way that they will issue a 401 auth challenge if a user attempts to download any new artifacts, i.e. jars coming from remote repositories that have not previously been cached within Artifactory. This is important to avoid repo.spring.io acting as an "open proxy" to the world. Authenticated users (SpringSource employees, build servers, etc) may download and cache new artifacts, but the anonymous user may not. This means that anonymous users are able to download all SpringSource-created artifacts and all their transitive dependencies, but not dependencies of their own applications that have not otherwised been previously cached.
As described in the Gradle documentation on init scripts, if a file named init.gradle is present in your GRADLE_HOME directory, it will be automatically applied when running gradle builds. This means that
Download init.gradle into your GRADLE_HOME directory (wget is used below, but may be done via the browser as well):
$ cd ~/.gradle
$ wget --user=me --ask-password https://repo.spring.io/gradle-init-scripts/init.gradle
Password for user 'bob': <my-encrypted-password>
...
Build as usual
init.gradle will automatically be applied and provides your Artifactory credentials when attempting to download artifacts. You will notice that the init script has been applied by its output on the command line:
Note that init.gradle requires Gradle 1.0-milestone-6 or better to work. It acts as a no-op for any earlier versions.
Staying up to date
Authenticated users may place a watch on init.gradle or the entire gradle-init-scripts repository in order to be emailed any time a change is made. When notified, simply repeat the instructions above to download and use the new version.
Administrative notes (using deploy.sh)
init.gradle (and any other init scripts) are deployed to Artifactory using the deploy.sh script also available in this repository. Bash, curl, and 'buildmaster' credentials are required.
Usage
Run without arguments for usage information:
$ ./deploy.sh
usage: ./deploy.sh file1 file2 ...
- each file will be deployed to https://repo.spring.io/gradle-init-scripts
- provide the encrypted password for user 'buildmaster' when prompted
- shell expansion is allowed, e.g.: ./deploy.sh *.gradle
Deploy file(s)
$ ./deploy.sh init.gradle
Deploying init.gradle to https://repo.spring.io/gradle-init-scripts/init.gradle
Enter host password for user 'buildmaster': <buildmaster-encrypted-password>
This command will return with something similar to the following (per the Artifactory REST API), indicating that the file has been successfully deployed.
请发表评论