From 7734c72017117d30d07c462149eca20724b123c9 Mon Sep 17 00:00:00 2001 From: markt Date: Thu, 12 Feb 2009 14:34:26 +0000 Subject: [PATCH] Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=46696 Add missing license headers git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@743764 13f79535-47bb-0310-9956-ffa450edef68 --- modules/jdbc-pool/sign.sh | 17 +++++++++++++++++ .../org/apache/tomcat/jdbc/test/StarvationTest.java | 16 ++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/modules/jdbc-pool/sign.sh b/modules/jdbc-pool/sign.sh index 2fab70380..dda2ca5c4 100755 --- a/modules/jdbc-pool/sign.sh +++ b/modules/jdbc-pool/sign.sh @@ -1,3 +1,20 @@ +#!/bin/sh + +# 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. + VERSION=v1.0.1 for i in $(find output/release/$VERSION -name "*.zip" -o -name "*.tar.gz"); do echo Signing $i diff --git a/modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/StarvationTest.java b/modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/StarvationTest.java index d381739b3..f76e51221 100644 --- a/modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/StarvationTest.java +++ b/modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/StarvationTest.java @@ -1,3 +1,19 @@ +/* + * 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. + */ package org.apache.tomcat.jdbc.test; import java.util.concurrent.CountDownLatch; -- 2.11.0