Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/circleci-public/maven-orb
Simplify common tasks for building and testing Java projects using Maven on CircleCI.
https://github.com/circleci-public/maven-orb
circleci-orbs maven orb
Last synced: about 3 hours ago
JSON representation
Simplify common tasks for building and testing Java projects using Maven on CircleCI.
- Host: GitHub
- URL: https://github.com/circleci-public/maven-orb
- Owner: CircleCI-Public
- License: mit
- Created: 2020-01-10T21:01:28.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-12T20:44:56.000Z (3 days ago)
- Last Synced: 2024-11-12T21:22:37.457Z (3 days ago)
- Topics: circleci-orbs, maven, orb
- Language: CSS
- Homepage: https://circleci.com/orbs/registry/orb/circleci/maven
- Size: 90.8 KB
- Stars: 6
- Watchers: 10
- Forks: 12
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# maven Orb
[![CircleCI Build Status](https://circleci.com/gh/CircleCI-Public/maven-orb.svg?style=shield "CircleCI Build Status")](https://circleci.com/gh/CircleCI-Public/maven-orb) [![CircleCI Orb Version](https://badges.circleci.com/orbs/circleci/maven.svg)](https://circleci.com/orbs/registry/orb/circleci/maven) [![GitHub License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/CircleCI-Public/maven-orb/master/LICENSE) [![CircleCI Community](https://img.shields.io/badge/community-CircleCI%20Discuss-343434.svg)](https://discuss.circleci.com/c/ecosystem/orbs)
Simplify common tasks for building and testing Java projects using Maven on CircleCI. Your entire CircleCI config could look like this:```yml
version: 2.1
orbs:
maven: circleci/[email protected]
workflows:
maven_test:
jobs:
- maven/test
```The built in test job is automatically compatible with standard Maven projects and is fully customizable with custom steps.
## Usage
Example use-cases are provided on the orb [registry page](https://circleci.com/orbs/registry/orb/circleci/maven#usage-examples). Source for these examples can be found within the `src/examples` directory.
## Resources
[CircleCI Orb Registry Page](https://circleci.com/orbs/registry/orb/circleci/maven) - The official registry page of this orb for all versions, executors, commands, and jobs described.
[CircleCI Orb Docs](https://circleci.com/docs/2.0/orb-intro/#section=configuration) - Docs for using and creating CircleCI Orbs.### How To Contribute
We welcome [issues](https://github.com/CircleCI-Public/maven-orb/issues) to and [pull requests](https://github.com/CircleCI-Public/maven-orb/pulls) against this repository!
To publish a new production version:
* Create a PR to the `Alpha` branch with your changes. This will act as a "staging" branch.
* When ready to publish a new production version, create a PR from `Alpha` to `master`. The Git Subject should include `[semver:patch|minor|release|skip]` to indicate the type of release.
* On merge, the release will be published to the orb registry automatically.For further questions/comments about this or other orbs, visit the Orb Category of [CircleCI Discuss](https://discuss.circleci.com/c/orbs).