blob: 76b5c00433316f8943a77288710278d9d308810b [file] [log] [blame]
##
## Licensed to the Apache Software Foundation (ASF) under one
## or more contributor license agreements. See the NOTICE file
## distributed with this work for additional information
## regarding copyright ownership. The ASF licenses this file
## to you 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.
##
## $Date: 2008-03-09 23:17:06 -0700 (Sun, 09 Mar 2008) $ $Rev: 635446 $
##
#if($preDepListText)
$preDepListText
#else
// ------------------------------------------------------------------
// Transitive dependencies of this project determined from the
// maven pom organized by organization.
// ------------------------------------------------------------------
#if ($projectName)$projectName#else${project.name}#end
#end
#foreach ( $organizationName in $projectsSortedByOrganization.keySet() )
From: '$organizationName.name'#if($organizationName.url) ($organizationName.url)#end
#foreach ( $project in $projectsSortedByOrganization.get( $organizationName ) )
- $project.name #if ($project.url)($project.url)#end $project.artifact
#foreach ( $license in $project.licenses)
License: $license.name #if ($license.url) ($license.url)#end
#end
#end
#end
#if($postDepListText)
$postDepListText
#end