Skip to content

Commit

Permalink
Update GemFire log messages
Browse files Browse the repository at this point in the history
This commit updates the console messages output by the buildpack when
downloading GemFire components to better match GemFire naming
convention.
  • Loading branch information
Christopher Frost committed Mar 2, 2015
1 parent 32c12bd commit e89e546
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/java_buildpack/container/tomcat/gemfire/gemfire.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class GemFire < JavaBuildpack::Component::VersionedDependencyComponent

# (see JavaBuildpack::Component::BaseComponent#compile)
def compile
download_jar(jar_name, tomcat_lib)
download_jar(jar_name, tomcat_lib, 'GemFire')
end

# (see JavaBuildpack::Component::BaseComponent#release)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class GemFireLogging < JavaBuildpack::Component::VersionedDependencyComponent

# (see JavaBuildpack::Component::BaseComponent#compile)
def compile
download_jar(jar_name, tomcat_lib)
download_jar(jar_name, tomcat_lib, 'GemFire Logging')
end

# (see JavaBuildpack::Component::BaseComponent#release)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class GemFireLoggingApi < JavaBuildpack::Component::VersionedDependencyComponent

# (see JavaBuildpack::Component::BaseComponent#compile)
def compile
download_jar(jar_name, tomcat_lib)
download_jar(jar_name, tomcat_lib, 'GemFire Logging API')
end

# (see JavaBuildpack::Component::BaseComponent#release)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class GemFireModules < JavaBuildpack::Component::VersionedDependencyComponent

# (see JavaBuildpack::Component::BaseComponent#compile)
def compile
download_jar(jar_name, tomcat_lib)
download_jar(jar_name, tomcat_lib, 'GemFire Modules')
end

# (see JavaBuildpack::Component::BaseComponent#release)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class GemFireModulesTomcat7 < JavaBuildpack::Component::VersionedDependencyCompo

# (see JavaBuildpack::Component::BaseComponent#compile)
def compile
download_jar(jar_name, tomcat_lib)
download_jar(jar_name, tomcat_lib, 'GemFire Modules Tomcat7')
end

# (see JavaBuildpack::Component::BaseComponent#release)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class GemFireSecurity < JavaBuildpack::Component::VersionedDependencyComponent

# (see JavaBuildpack::Component::BaseComponent#compile)
def compile
download_jar(jar_name, tomcat_lib)
download_jar(jar_name, tomcat_lib, 'GemFire Security')
end

# (see JavaBuildpack::Component::BaseComponent#release)
Expand Down

0 comments on commit e89e546

Please sign in to comment.