{"id":18904958,"url":"https://github.com/concon121/grunt-maven-plugin","last_synced_at":"2026-03-04T17:30:18.021Z","repository":{"id":94143482,"uuid":"56932744","full_name":"concon121/grunt-maven-plugin","owner":"concon121","description":"Simple maven plugin for running grunt tasks as part of the maven build process","archived":false,"fork":false,"pushed_at":"2016-04-24T14:44:22.000Z","size":479,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-31T10:33:21.707Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/concon121.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2016-04-23T17:47:58.000Z","updated_at":"2016-04-24T14:44:23.000Z","dependencies_parsed_at":"2023-03-16T06:30:36.977Z","dependency_job_id":null,"html_url":"https://github.com/concon121/grunt-maven-plugin","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/concon121%2Fgrunt-maven-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/concon121%2Fgrunt-maven-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/concon121%2Fgrunt-maven-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/concon121%2Fgrunt-maven-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/concon121","download_url":"https://codeload.github.com/concon121/grunt-maven-plugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239889026,"owners_count":19713702,"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-11-08T09:09:57.006Z","updated_at":"2026-03-04T17:30:17.928Z","avatar_url":"https://github.com/concon121.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# grunt-maven-plugin\nSimple maven plugin for running grunt tasks as part of the maven build process\n\n## Configuration\n\n### workingDirectory\nThe working directory is the directory which contains your package.json and your Gruntfile.js/ Gruntfile.coffee.\n\n### pythonInstallation\nAs the current implementation relies on Python to create native system processes, the application needs to know where to find Python!  The value of this configuration item should be the absolute path of the Python application on your computer.\n\n### prereqs\nGrunt uses and depends on many different packages and libraries.  The prerequisites are applications which you expect to be installed on your system.  The prerequisites are designed to be a list of key value pairs, where the key is the application you expect to be installed and the value is a simple command for the application which when executed you expect to return a 0 exit code.\n\nConsider the following example:\n\n    \u003cprereqs\u003e\n        \u003cruby\u003e--version\u003c/ruby\u003e\n    \u003c/prereqs\u003e\n\nThis configuration would execute the shell command:\n\n    ruby --version\n\n### gruntFileExtension\nGrunt supports both JavaScript and CoffeeScript, this configuration item just tell's the plugin which one you are using.\n\nAccepted values are:\n\n    \u003cgruntFileExtension\u003eJS\u003c/gruntFileExtension\u003e\n    \u003cgruntFileExtension\u003eCOFFEE\u003c/gruntFileExtension\u003e\n\nIf no extension is defined, the plugin will assume you are using JavaScript.\n\n### Full Example\n\n\t\t\t\u003cplugin\u003e\n\t\t\t\t\u003cgroupId\u003enet.cbr.software\u003c/groupId\u003e\n\t\t\t\t\u003cartifactId\u003egrunt-maven-plugin\u003c/artifactId\u003e\n\t\t\t\t\u003cversion\u003e0.0.1-SNAPSHOT\u003c/version\u003e\n\t\t\t\t\u003cexecutions\u003e\n\t\t\t\t\t\u003cexecution\u003e\n\t\t\t\t\t\t\u003cgoals\u003e\n\t\t\t\t\t\t\t\u003cgoal\u003egrunt\u003c/goal\u003e\n\t\t\t\t\t\t\u003c/goals\u003e\n\t\t\t\t\t\t\u003cconfiguration\u003e\n\t\t\t\t\t\t\t\u003cworkingDirectory\u003e${basedir}/src/main/webapp/assets\u003c/workingDirectory\u003e\n\t\t\t\t\t\t\t\u003cpythonInstallation\u003eC:/path/to/my/python/installation/Programs/Python/Python35-32/python\u003c/pythonInstallation\u003e\n\t\t\t\t\t\t\t\u003cprereqs\u003e\n\t\t\t\t\t\t\t\t\u003cruby\u003e--version\u003c/ruby\u003e\n\t\t\t\t\t\t\t\t\u003ccompass\u003e--version\u003c/compass\u003e\n\t\t\t\t\t\t\t\t\u003cnode\u003e--version\u003c/node\u003e\n\t\t\t\t\t\t\t\u003c/prereqs\u003e\n\t\t\t\t\t\t\t\u003cgruntFileExtension\u003eJS\u003c/gruntFileExtension\u003e\n\t\t\t\t\t\t\u003c/configuration\u003e\n\t\t\t\t\t\u003c/execution\u003e\n\t\t\t\t\u003c/executions\u003e\n\t\t\t\u003c/plugin\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconcon121%2Fgrunt-maven-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fconcon121%2Fgrunt-maven-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconcon121%2Fgrunt-maven-plugin/lists"}