Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stefanbirkner/contarini
Java model and renderer for web crawler tags.
https://github.com/stefanbirkner/contarini
Last synced: about 1 month ago
JSON representation
Java model and renderer for web crawler tags.
- Host: GitHub
- URL: https://github.com/stefanbirkner/contarini
- Owner: stefanbirkner
- Created: 2012-11-26T19:10:18.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2015-12-16T17:19:52.000Z (almost 9 years ago)
- Last Synced: 2023-07-26T22:08:35.288Z (over 1 year ago)
- Language: Java
- Homepage: http://stefanbirkner.github.io/contarini/index.html
- Size: 146 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Contarini
[![Build Status](https://travis-ci.org/stefanbirkner/contarini.svg?branch=master)](https://travis-ci.org/stefanbirkner/contarini)
Contarini provides a Java model and renderer for search engine meta tags
(e.g. alternative, canonical, description, keywords, robots). The
extension [Contarini JSP](https://github.com/stefanbirkner/contarini-jsp)
provides support for rendering the model with a JSP tag.## Installation
Contarini is available from [Maven Central](http://search.maven.org/).
com.github.stefanbirkner
contarini
1.2.0
## Usage
Contarini's documentation is stored in the `gh-pages` branch and is
available online at
http://stefanbirkner.github.io/contarini/index.html## Contributing
You have three options if you have a feature request, found a bug or
simply have a question about Contarini.* [Write an issue.](https://github.com/stefanbirkner/contarini/issues/new)
* Create a pull request. (See [Understanding the GitHub Flow](https://guides.github.com/introduction/flow/index.html))
* [Write a mail to [email protected]](mailto:[email protected])## Development Guide
Contarini is build with [Maven](http://maven.apache.org/). If you want
to contribute code than* Please write a test for your change.
* Ensure that you didn't break the build by running `mvn test`.
* Fork the repo and create a pull request. (See [Understanding the GitHub Flow](https://guides.github.com/introduction/flow/index.html))The basic coding style is described in the
[EditorConfig](http://editorconfig.org/) file `.editorconfig`.Contarini supports [Travis CI](https://travis-ci.org/) for continuous
integration. Your pull request will be automatically build by Travis
CI.## Release Guide
* Select a new version according to the
[Semantic Versioning 2.0.0 Standard](http://semver.org/).
* Set the new version in `pom.xml` and in the `Installation` section of
this readme.
* Commit the modified `pom.xml` and `README.md`.
* Run `mvn clean deploy` with JDK 6 or 7.
* Add a tag for the release: `git tag contarini-X.X.X`