Author: ltheussl Date: Tue Mar 27 02:16:51 2007 New Revision: 522828 URL: http://svn.apache.org/viewvc?view=rev&rev=522828 Log: Update/add license headers.
Modified: maven/maven-1/plugins-sandbox/trunk/modello/plugin.jelly maven/maven-1/plugins-sandbox/trunk/modello/plugin.properties maven/maven-1/plugins-sandbox/trunk/modello/project.properties maven/maven-1/plugins-sandbox/trunk/modello/project.xml maven/maven-1/plugins-sandbox/trunk/modello/src/main/org/apache/maven/plugins/modello/ModelloCliWrapper.java maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/maven.xml maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/project.properties maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/project.xml maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/src/main/mdo/model.mdo maven/maven-1/plugins-sandbox/trunk/modello/xdocs/changes.xml maven/maven-1/plugins-sandbox/trunk/modello/xdocs/goals.xml maven/maven-1/plugins-sandbox/trunk/modello/xdocs/index.xml maven/maven-1/plugins-sandbox/trunk/modello/xdocs/install.xml maven/maven-1/plugins-sandbox/trunk/modello/xdocs/navigation.xml maven/maven-1/plugins-sandbox/trunk/modello/xdocs/properties.xml maven/maven-1/plugins-sandbox/trunk/modello/xdocs/usage.xml Modified: maven/maven-1/plugins-sandbox/trunk/modello/plugin.jelly URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/plugin.jelly?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/plugin.jelly (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/plugin.jelly Tue Mar 27 02:16:51 2007 @@ -2,11 +2,12 @@ <!-- /* - * Copyright 2001-2004 The Apache Software Foundation. - * - * 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 + * 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 * Modified: maven/maven-1/plugins-sandbox/trunk/modello/plugin.properties URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/plugin.properties?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/plugin.properties (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/plugin.properties Tue Mar 27 02:16:51 2007 @@ -1,9 +1,10 @@ # ------------------------------------------------------------------- -# Copyright 2001-2006 The Apache Software Foundation. -# -# 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 +# 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 # Modified: maven/maven-1/plugins-sandbox/trunk/modello/project.properties URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/project.properties?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/project.properties (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/project.properties Tue Mar 27 02:16:51 2007 @@ -1,9 +1,10 @@ # ------------------------------------------------------------------- -# Copyright 2001-2007 The Apache Software Foundation. -# -# 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 +# 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 # Modified: maven/maven-1/plugins-sandbox/trunk/modello/project.xml URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/project.xml?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/project.xml (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/project.xml Tue Mar 27 02:16:51 2007 @@ -1,22 +1,23 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<!-- - /* - * Copyright 2001-2006 The Apache Software Foundation. - * - * 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. - */ ---> +<!-- +/* + * 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. + */ + --> <project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd"> <extend>../plugins-parent/project.xml</extend> Modified: maven/maven-1/plugins-sandbox/trunk/modello/src/main/org/apache/maven/plugins/modello/ModelloCliWrapper.java URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/src/main/org/apache/maven/plugins/modello/ModelloCliWrapper.java?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/src/main/org/apache/maven/plugins/modello/ModelloCliWrapper.java (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/src/main/org/apache/maven/plugins/modello/ModelloCliWrapper.java Tue Mar 27 02:16:51 2007 @@ -1,11 +1,12 @@ package org.apache.maven.plugins.modello; /* ==================================================================== - * Copyright 2001-2004 The Apache Software Foundation. - * - * 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 + * 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 * Modified: maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/maven.xml URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/maven.xml?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/maven.xml (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/maven.xml Tue Mar 27 02:16:51 2007 @@ -1,21 +1,22 @@ <?xml version="1.0"?> <!-- - /* - * Copyright 2001-2006 The Apache Software Foundation. - * - * 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. - */ ---> +/* + * 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. + */ + --> <project xmlns:j="jelly:core" xmlns:maven="jelly:maven" xmlns:assert="assert"> <!-- Register Modello --> Modified: maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/project.properties URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/project.properties?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/project.properties (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/project.properties Tue Mar 27 02:16:51 2007 @@ -1,9 +1,10 @@ # ------------------------------------------------------------------- -# Copyright 2001-2006 The Apache Software Foundation. -# -# 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 +# 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 # Modified: maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/project.xml URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/project.xml?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/project.xml (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/project.xml Tue Mar 27 02:16:51 2007 @@ -1,22 +1,22 @@ <?xml version="1.0" encoding="ISO-8859-1"?> - -<!-- - /* - * Copyright 2001-2006 The Apache Software Foundation. - * - * 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. - */ ---> +<!-- +/* + * 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. + */ + --> <project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd"> <pomVersion>3</pomVersion> Modified: maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/src/main/mdo/model.mdo URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/src/main/mdo/model.mdo?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/src/main/mdo/model.mdo (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/src/plugin-test/src/main/mdo/model.mdo Tue Mar 27 02:16:51 2007 @@ -1,5 +1,23 @@ <?xml version="1.0"?> - +<!-- +/* + * 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. + */ + --> + <!-- | | o add specification element to a field, this would be more a technical description of Modified: maven/maven-1/plugins-sandbox/trunk/modello/xdocs/changes.xml URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/xdocs/changes.xml?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/xdocs/changes.xml (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/xdocs/changes.xml Tue Mar 27 02:16:51 2007 @@ -2,11 +2,12 @@ <!-- /* - * Copyright 2001-2007 The Apache Software Foundation. - * - * 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 + * 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 * Modified: maven/maven-1/plugins-sandbox/trunk/modello/xdocs/goals.xml URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/xdocs/goals.xml?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/xdocs/goals.xml (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/xdocs/goals.xml Tue Mar 27 02:16:51 2007 @@ -1,4 +1,22 @@ <?xml version="1.0" encoding="UTF-8"?> +<!-- +/* + * 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. + */ + --> <document> <properties> <title>Goals</title> Modified: maven/maven-1/plugins-sandbox/trunk/modello/xdocs/index.xml URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/xdocs/index.xml?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/xdocs/index.xml (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/xdocs/index.xml Tue Mar 27 02:16:51 2007 @@ -1,21 +1,22 @@ <?xml version="1.0"?> <!-- - /* - * Copyright 2001-2007 The Apache Software Foundation. - * - * 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. - */ ---> +/* + * 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. + */ + --> <document> <properties> <title>Overview</title> Modified: maven/maven-1/plugins-sandbox/trunk/modello/xdocs/install.xml URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/xdocs/install.xml?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/xdocs/install.xml (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/xdocs/install.xml Tue Mar 27 02:16:51 2007 @@ -1,20 +1,22 @@ <?xml version="1.0"?> <!-- - /* - * Copyright 2001-2007 The Apache Software Foundation. - * - * 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. - */ +/* + * 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. + */ + --> --> <document> <properties> Modified: maven/maven-1/plugins-sandbox/trunk/modello/xdocs/navigation.xml URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/xdocs/navigation.xml?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/xdocs/navigation.xml (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/xdocs/navigation.xml Tue Mar 27 02:16:51 2007 @@ -1,11 +1,12 @@ <?xml version="1.0" encoding="ISO-8859-1"?> <!-- /* - * Copyright 2001-2004 The Apache Software Foundation. - * - * 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 + * 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 * Modified: maven/maven-1/plugins-sandbox/trunk/modello/xdocs/properties.xml URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/xdocs/properties.xml?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/xdocs/properties.xml (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/xdocs/properties.xml Tue Mar 27 02:16:51 2007 @@ -1,4 +1,22 @@ <?xml version="1.0" encoding="UTF-8"?> +<!-- +/* + * 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. + */ + --> <document> <properties> <title>Properties</title> Modified: maven/maven-1/plugins-sandbox/trunk/modello/xdocs/usage.xml URL: http://svn.apache.org/viewvc/maven/maven-1/plugins-sandbox/trunk/modello/xdocs/usage.xml?view=diff&rev=522828&r1=522827&r2=522828 ============================================================================== --- maven/maven-1/plugins-sandbox/trunk/modello/xdocs/usage.xml (original) +++ maven/maven-1/plugins-sandbox/trunk/modello/xdocs/usage.xml Tue Mar 27 02:16:51 2007 @@ -1,21 +1,22 @@ <?xml version="1.0"?> <!-- - /* - * Copyright 2001-2007 The Apache Software Foundation. - * - * 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. - */ ---> +/* + * 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. + */ + --> <document> <properties> <title>Usage</title>