This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature dependency definition in build.gradle (#41)
Description =========== This is the first part if bringing the basic paket configuration (paket.dependencies, paket.template, paket.references) into the gradle project. This change adds custom `paket` dependency handler to the gradle dependency handler and a nuget repository factory. *build.gradle* ```groovy dependencies { paket { nuget "Test ~> 1" } } repositories { nuget { url 'some/url' } } ``` At the moment only `nuget` dependencies are supported. When dependencies are configured in the `build.gradle` file, a `paket.dependencies` file will be generated. If this file already exists, it will be overridden. Changes ======= ![ADD] paket dependencies handler ![ADD] nuget dependency definition ![ADD] nuget dependency source artifact repository handler ![ADD] new task `paketDependencies`
- Loading branch information
Showing
37 changed files
with
1,827 additions
and
20 deletions.
There are no files selected for viewing
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
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
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
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
Oops, something went wrong.