https://github.com/wooga/atlas-paket
Paket plugin for gradle
https://github.com/wooga/atlas-paket
atlas gradle paket plugin wooga
Last synced: 6 months ago
JSON representation
Paket plugin for gradle
- Host: GitHub
- URL: https://github.com/wooga/atlas-paket
- Owner: wooga
- License: apache-2.0
- Created: 2017-05-13T18:09:13.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-03-15T11:45:31.000Z (over 1 year ago)
- Last Synced: 2024-03-16T09:01:00.975Z (over 1 year ago)
- Topics: atlas, gradle, paket, plugin, wooga
- Language: Groovy
- Homepage: https://wooga.github.io/atlas-paket/
- Size: 770 KB
- Stars: 0
- Watchers: 41
- Forks: 2
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Support: .github/SUPPORT.md
Awesome Lists containing this project
README
Atlas-Paket
===========[](https://plugins.gradle.org/plugin/net.wooga.paket)
[](https://travis-ci.org/wooga/atlas-paket)
[](https://coveralls.io/github/wooga/atlas-paket?branch=master)
[](https://raw.githubusercontent.com/wooga/atlas-paket/master/LICENSE)
[]()
[]()This plugin provides tasks for retrieving and publishing [Paket][paket] packages in [gradle][gradle]. It downloads [`paket.exe`][paket_exe] via the [`paket.bootstrapper.exe`][paket_bootstrapper] and runs both with `mono/.Net`. This plugins helps to build and package .Net projects with gradle.
System Requirements
===================### Unix
mono > 5.x### Windows
.Net > 5.xApplying the plugin
===================**build.gradle**
```groovy
plugins {
id 'net.wooga.paket' version '1.2.0'
}
```
-or-
```groovy
plugins {
id 'net.wooga.paket-get' version '1.2.0'
id 'net.wooga.paket-pack' version '1.2.0'
id 'net.wooga.paket-publish' version '1.2.0'
id 'net.wooga.paket-unity' version '1.2.0'
}
```Documentation
=============- [API docs](https://wooga.github.io/atlas-paket/docs/api/)
- [paket-base](docs/Base.md)
- [paket-get](docs/Get.md)
- [paket-pack](docs/Pack.md)
- [paket-publish](docs/Publish.md)
- [paket-unity](docs/Unity.md)
- [Release Notes](RELEASE_NOTES.md)Gradle and Java Compatibility
=============================Built with Oracle JDK7
Tested with Oracle JDK8| Gradle Version | Works |
| :-------------: | :----: |
| < 3.0 | ![no] |
| 3.0 | ![no] |
| 3.1 | ![no] |
| 3.2 | ![no] |
| 3.3 | ![no] |
| 3.4 | ![no] |
| 3.5 | ![no] |
| 3.5.1 | ![no] |
| 4.0 | ![yes] |
| 4.1 | ![yes] |
| 4.2 | ![yes] |
| 4.3 | ![yes] |
| 4.4 | ![yes] |
| 4.5 | ![yes] |
| 4.6 | ![yes] |
| 4.6 | ![yes] |
| 4.7 | ![yes] |
| 4.8 | ![yes] |
| 4.9 | ![yes] |
| 4.10 | ![yes] |Development
===========[Code of Conduct](docs/Code-of-conduct.md)
LICENSE
=======Copyright 2017 Wooga GmbH
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License atUnless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.[paket_template]: https://fsprojects.github.io/Paket/template-files.html "paket template file"
[paket]: https://fsprojects.github.io/Paket/ "Paket"
[paket_exe]: https://github.com/fsprojects/Paket/releases/download/5.1.8/paket.exe[paket_bootstrapper]: https://github.com/fsprojects/Paket/releases/download/5.1.8/paket.bootstrapper.exe
[paket_unity3d]: http://wooga.github.io/Paket.Unity3D/ "Paket.Unity3d"
[gradle]: https://gradle.org/ "Gradle"
[gradle_finalizedBy]: https://docs.gradle.org/3.5/dsl/org.gradle.api.Task.html#org.gradle.api.Task:finalizedBy
[gradle_dependsOn]: https://docs.gradle.org/3.5/dsl/org.gradle.api.Task.html#org.gradle.api.Task:dependsOn[yes]: https://atlas-resources.wooga.com/icons/icon_check.svg "yes"
[no]: https://atlas-resources.wooga.com/icons/icon_uncheck.svg "no"