Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
255406b30f | ||
|
|
a24f8f15ea | ||
|
|
5d07f08126 | ||
|
|
01b95d32c6 | ||
|
|
3c9f98d75e | ||
|
|
e0b0e1cd19 | ||
|
|
7067aed306 | ||
|
|
cb637faf83 | ||
|
|
66023e1a66 | ||
|
|
743006a16e | ||
|
|
d5d69ee5ac |
11
.sync.yml
11
.sync.yml
@@ -25,17 +25,6 @@ Gemfile:
|
|||||||
- mswin
|
- mswin
|
||||||
- mingw
|
- mingw
|
||||||
- x64_mingw
|
- x64_mingw
|
||||||
- gem: beaker
|
|
||||||
version: '~> 3.13'
|
|
||||||
from_env: BEAKER_VERSION
|
|
||||||
- gem: beaker-abs
|
|
||||||
from_env: BEAKER_ABS_VERSION
|
|
||||||
version: '~> 0.1'
|
|
||||||
- gem: beaker-pe
|
|
||||||
- gem: beaker-hostgenerator
|
|
||||||
from_env: BEAKER_HOSTGENERATOR_VERSION
|
|
||||||
- gem: beaker-rspec
|
|
||||||
from_env: BEAKER_RSPEC_VERSION
|
|
||||||
|
|
||||||
appveyor.yml:
|
appveyor.yml:
|
||||||
delete: true
|
delete: true
|
||||||
|
|||||||
@@ -45,9 +45,9 @@ matrix:
|
|||||||
rvm: 2.1.9
|
rvm: 2.1.9
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
- /^v\d/
|
- /^v\d/
|
||||||
- release
|
- release
|
||||||
notifications:
|
notifications:
|
||||||
email: false
|
email: false
|
||||||
deploy:
|
deploy:
|
||||||
|
|||||||
@@ -2,6 +2,14 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
|
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
|
||||||
|
|
||||||
|
## [3.1.0](https://github.com/puppetlabs/puppetlabs-java/tree/3.1.0) (2018-09-06)
|
||||||
|
|
||||||
|
[Full Changelog](https://github.com/puppetlabs/puppetlabs-java/compare/3.0.0...3.1.0)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- pdksync - \(MODULES-7705\) - Bumping stdlib dependency from \< 5.0.0 to \< 6.0.0 [\#310](https://github.com/puppetlabs/puppetlabs-java/pull/310) ([pmcmaw](https://github.com/pmcmaw))
|
||||||
|
|
||||||
## [3.0.0](https://github.com/puppetlabs/puppetlabs-java/tree/3.0.0) (2018-08-13)
|
## [3.0.0](https://github.com/puppetlabs/puppetlabs-java/tree/3.0.0) (2018-08-13)
|
||||||
|
|
||||||
[Full Changelog](https://github.com/puppetlabs/puppetlabs-java/compare/2.4.0...3.0.0)
|
[Full Changelog](https://github.com/puppetlabs/puppetlabs-java/compare/2.4.0...3.0.0)
|
||||||
|
|||||||
9
Gemfile
9
Gemfile
@@ -36,13 +36,8 @@ group :development do
|
|||||||
gem "github_changelog_generator", require: false, git: 'https://github.com/skywinder/github-changelog-generator', ref: '20ee04ba1234e9e83eb2ffb5056e23d641c7a018' if Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.2.2')
|
gem "github_changelog_generator", require: false, git: 'https://github.com/skywinder/github-changelog-generator', ref: '20ee04ba1234e9e83eb2ffb5056e23d641c7a018' if Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.2.2')
|
||||||
end
|
end
|
||||||
group :system_tests do
|
group :system_tests do
|
||||||
gem "puppet-module-posix-system-r#{minor_version}", require: false, platforms: [:ruby]
|
gem "puppet-module-posix-system-r#{minor_version}", require: false, platforms: [:ruby]
|
||||||
gem "puppet-module-win-system-r#{minor_version}", require: false, platforms: [:mswin, :mingw, :x64_mingw]
|
gem "puppet-module-win-system-r#{minor_version}", require: false, platforms: [:mswin, :mingw, :x64_mingw]
|
||||||
gem "beaker", *location_for(ENV['BEAKER_VERSION'] || '~> 3.13')
|
|
||||||
gem "beaker-abs", *location_for(ENV['BEAKER_ABS_VERSION'] || '~> 0.1')
|
|
||||||
gem "beaker-pe", require: false
|
|
||||||
gem "beaker-hostgenerator"
|
|
||||||
gem "beaker-rspec"
|
|
||||||
end
|
end
|
||||||
|
|
||||||
puppet_version = ENV['PUPPET_GEM_VERSION']
|
puppet_version = ENV['PUPPET_GEM_VERSION']
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "puppetlabs-java",
|
"name": "puppetlabs-java",
|
||||||
"version": "3.0.0",
|
"version": "3.1.0",
|
||||||
"author": "puppetlabs",
|
"author": "puppetlabs",
|
||||||
"summary": "Installs the correct Java package on various platforms.",
|
"summary": "Installs the correct Java package on various platforms.",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
"dependencies": [
|
"dependencies": [
|
||||||
{
|
{
|
||||||
"name": "puppetlabs/stdlib",
|
"name": "puppetlabs/stdlib",
|
||||||
"version_requirement": ">= 4.13.1 < 5.0.0"
|
"version_requirement": ">= 4.13.1 < 6.0.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "puppet/archive",
|
"name": "puppet/archive",
|
||||||
@@ -88,6 +88,6 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"template-url": "https://github.com/puppetlabs/pdk-templates",
|
"template-url": "https://github.com/puppetlabs/pdk-templates",
|
||||||
"template-ref": "1.6.1-0-g6b0d497",
|
"template-ref": "1.7.0-0-g57412ed",
|
||||||
"pdk-version": "1.6.1"
|
"pdk-version": "1.7.0"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
require 'puppetlabs_spec_helper/module_spec_helper'
|
require 'puppetlabs_spec_helper/module_spec_helper'
|
||||||
require 'rspec-puppet-facts'
|
require 'rspec-puppet-facts'
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
|
require 'beaker-pe'
|
||||||
|
require 'beaker-puppet'
|
||||||
require 'beaker-rspec'
|
require 'beaker-rspec'
|
||||||
require 'beaker/puppet_install_helper'
|
require 'beaker/puppet_install_helper'
|
||||||
require 'beaker/module_install_helper'
|
require 'beaker/module_install_helper'
|
||||||
|
|
||||||
run_puppet_install_helper
|
run_puppet_install_helper
|
||||||
|
configure_type_defaults_on(hosts)
|
||||||
install_module_on(hosts)
|
install_module_on(hosts)
|
||||||
install_module_dependencies_on(hosts)
|
install_module_dependencies_on(hosts)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user