Skip to content

Commit

Permalink
added maven cookbook
Browse files Browse the repository at this point in the history
  • Loading branch information
schisamo committed Oct 29, 2010
1 parent 4ad26a2 commit 7b7499b
Show file tree
Hide file tree
Showing 4 changed files with 143 additions and 0 deletions.
50 changes: 50 additions & 0 deletions maven/README.md
@@ -0,0 +1,50 @@
Description
===========

Installs and configures Apache Maven

Requirements
============

Platform:

* Debian, Ubuntu, CentOS, Red Hat, Fedora

The following Opscode cookbooks are dependencies:

* java
* jpackage

Attributes
==========

Usage
=====

Simply include the recipe where you want Apache Maven installed.

TODO
====

* plugin support
* global config template - %M2_HOME%/conf/settings.xml

License and Author
==================

Author:: Seth Chisamore (<schisamo@opscode.com>)

Copyright 2010, Opscode, Inc.

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 at

http://www.apache.org/licenses/LICENSE-2.0

Unless 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.

50 changes: 50 additions & 0 deletions maven/metadata.json
@@ -0,0 +1,50 @@
{
"providing": {
},
"maintainer": "Opscode, Inc.",
"replacing": {
},
"description": "Installs/Configures maven",
"maintainer_email": "cookbooks@opscode.com",
"groupings": {
},
"attributes": {
},
"recommendations": {
},
"dependencies": {
"java": [

],
"jpackage": [

]
},
"suggestions": {
},
"long_description": "Description\n===========\n\nInstalls and configures Apache Maven\n\nRequirements\n============\n\nPlatform: \n\n* Debian, Ubuntu, CentOS, Red Hat, Fedora\n\nThe following Opscode cookbooks are dependencies:\n\n* java\n* jpackage\n\nAttributes\n==========\n\nUsage\n=====\n\nSimply include the recipe where you want Apache Maven installed.\n\nTODO\n====\n\n* plugin support\n* global config template - %M2_HOME%/conf/settings.xml\n\nLicense and Author\n==================\n\nAuthor:: Seth Chisamore (<schisamo@opscode.com>)\n\nCopyright 2010, Opscode, Inc.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\n",
"platforms": {
"debian": [

],
"fedora": [

],
"centos": [

],
"ubuntu": [

],
"redhat": [

]
},
"name": "maven",
"version": "0.0.1",
"conflicting": {
},
"license": "Apache 2.0",
"recipes": {
}
}
14 changes: 14 additions & 0 deletions maven/metadata.rb
@@ -0,0 +1,14 @@
maintainer "Opscode, Inc."
maintainer_email "cookbooks@opscode.com"
license "Apache 2.0"
description "Installs/Configures maven"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "0.0.1"

%w{ java jpackage }.each do |cb|
depends cb
end

%w{ debian ubuntu centos redhat fedora }.each do |os|
supports os
end
29 changes: 29 additions & 0 deletions maven/recipes/default.rb
@@ -0,0 +1,29 @@
#
# Cookbook Name:: maven
# Recipe:: default
#
# Copyright 2010, Opscode, Inc.
#
# 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 at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless 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.
#

include_recipe "java"

case node.platform
when "redhat", "centos", "fedora"
include_recipe "jpackage"
end

package "maven2" do
action :install
end

0 comments on commit 7b7499b

Please sign in to comment.