{"id":22843135,"url":"https://github.com/deflatedpickle/gradle-concurnas","last_synced_at":"2025-07-06T01:39:57.512Z","repository":{"id":82963060,"uuid":"234771201","full_name":"DeflatedPickle/gradle-concurnas","owner":"DeflatedPickle","description":"A Gradle plugin for Concurnas.","archived":false,"fork":false,"pushed_at":"2020-06-01T12:28:17.000Z","size":23,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-02-06T09:28:00.906Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://plugins.gradle.org/plugin/com.deflatedpickle.gradle.concurnas","language":"Groovy","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DeflatedPickle.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-01-18T17:31:26.000Z","updated_at":"2020-07-12T16:35:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"17afca31-d6cb-4194-9c36-0af0c67d97d8","html_url":"https://github.com/DeflatedPickle/gradle-concurnas","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeflatedPickle%2Fgradle-concurnas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeflatedPickle%2Fgradle-concurnas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeflatedPickle%2Fgradle-concurnas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeflatedPickle%2Fgradle-concurnas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DeflatedPickle","download_url":"https://codeload.github.com/DeflatedPickle/gradle-concurnas/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246418641,"owners_count":20773938,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-13T02:12:56.679Z","updated_at":"2025-03-31T05:10:59.709Z","avatar_url":"https://github.com/DeflatedPickle.png","language":"Groovy","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gradle-concurnas\nA Gradle plugin for Concurnas.\n\n## Table Of Contents\n- [Installation](#installation)\n- [Requirements](#requirements)\n- [Usage](#usage)\n- [Extensions](#extensions)\n\t- [Conc](#conc-extension)\n\t\t- [Compiler Location](#compiler-location)\n\t- [Concc](#concc-extension)\n\t\t- [Compiler Arguments](#compiler-arguments)\n\t- [REPL](#repl-extension)\n\t\t- [REPL Arguments](#repl-arguments)\n\t- [JVM](#jvm-extenion)\n\t\t- [JVM Arguments](#jvm-arguments)\n- [Tasks](#tasks)\n\t- [CompileConc](#compileconc-task)\n\t- [ConcInstall](#concinstall-task)\n\t- [ConcRuntimeCache](#concruntimecache-task) ***BROKEN***\n\t- [ConcLibCompilation](#conclibcompilation-task) ***BROKEN***\n\t- [ConcRepl](#concrepl-task)\n\n## Installation\nEdit your plugins block to reference to this plugin by `id` and latest release version.\n\n```groovy\nplugins {\n  id \"com.deflatedpickle.gradle.concurnas\" version \"0.0.2\"\n}\n```\n\n## Requirements\nTo use this plugin, you will either need to have Gradle installed, or have the Gradle cache files in your directory (such as `gradlew` or `gradlew.bat`).\n\nYou are ***NOT*** required to have Concurnas installed, as the `concInstall` task can handle that.\n\nYou ***DO*** need to either set `conc.home` or set the system environment variable, `conc_home`.\n\n## Usage\nThe most basic usage of this plugin is just including the plugin. It will default to using the Concurnas compiler located in `conc_home`.\n\nA source set will be created for `src/main/concurnas`.\n\n## Extensions\n\n### Conc Extension\nThe `conc` extension is where variables for the compiler and REPL are to be added.\n\n#### Compiler Location\nInstead of using the compiler at `conc_home`, you can customize the location like so:\n\n```groovy\nconc {\n    home = 'H:\\\\Concurnas'\n}\n```\n\n***Or:***\n\n```groovy\nconc.home = 'H:\\\\Concurnas'\n```\n\n\u003e The type of `home` is implemented as a `String`.\n\u003e\n\u003e If Concurnas-*.jar can't be found in the specified location (`home` or otherwise), the plugin will download the latest version to the specified file\n\n### Concc Args\n\n#### Compiler Arguments\nThe Concurnas compiler can accept multiple arguments, you can specify these from Gradle like so:\n\n```groovy\nconc {\n    concc {\n    \targs += '-verbose'\n    } \n}\n\n```\n\n***Or:***\n\n```groovy\nconc.concc.args += '-verbose'\n```\n\n\u003e The type of `concc.args` is implemented as a `String[]`.\n\n### REPL Extension\n\n#### REPL Arguments\nThese are arguments that are sent to the REPL (when it's run). They are given like so:\n\n```groovy\nconc {\n    repl {\n    \targs += '-verbose'\n    }\n}\n```\n\n***Or:***\n\n```groovy\nconc.repl.args += '-verbose'\n```\n\n### JVM Extension\n\n#### JVM Arguments\nThese are the JVM arguments that will be used both when compiling and running the REPL. You can specify them with:\n\n```groovy\nconc {\n    jvm {\n    \targs += '-verbose'\n    }\n}\n```\n\n***Or:***\n\n```groovy\nconc.jvm.args += '-verbose'\n```\n\n### CompileConc Task\n\u003e Depends on: `concInstall`\n\nThe `conc` task is the main task for the plugin.\n\n### ConcInstall Task\n\u003e Depends on: `null`\n\nThis task will check the `home` directory (supplied to the `conc` task) for a suitable Concurnas JAR.\n\n\u003e A suitable JAR is simply named `Concurnas-*.jar`, where `*` is the version  \n\nIf a suitable JAR is ***NOT*** found, the latest release on the Concurnas GitHub repository will be downloaded and unzipped to the specified `conc.home`.\n\n### ConcRuntimeCache Task\n\u003e Depends on: `concInstall`\n\nThis task is currently broken, you ***SHOULDN'T*** run it, but you ***SHOULD*** write a pull request if you know how to fix it!\n\n### ConcLibCompilation Task\n\u003e Depends on: `concInstall`\n\nThis task is currently broken, you ***SHOULDN'T*** run it, but you ***SHOULD*** write a pull request if you know how to fix it!\n\n### ConcRepl Task\n\u003e Depends on: `concInstall`\n\nThis task will launch the Concurnas REPL. It uses the arguments supplied in `conc.replArgs`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeflatedpickle%2Fgradle-concurnas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeflatedpickle%2Fgradle-concurnas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeflatedpickle%2Fgradle-concurnas/lists"}