Author: gabriele
Date: Fri Sep 10 11:40:23 2010
New Revision: 995759
URL: http://svn.apache.org/viewvc?rev=995759&view=rev
Log:
custom resource bundle to be used to generate proper NOTICE file for chemistry,
to fix https://issues.apache.org/jira/browse/CMIS-224
Added:
incubator/chemistry/chemistry-jar-resource-bundle/
incubator/chemistry/chemistry-jar-resource-bundle/trunk/
incubator/chemistry/chemistry-jar-resource-bundle/trunk/pom.xml (with
props)
incubator/chemistry/chemistry-jar-resource-bundle/trunk/src/
incubator/chemistry/chemistry-jar-resource-bundle/trunk/src/main/
incubator/chemistry/chemistry-jar-resource-bundle/trunk/src/main/resources/
incubator/chemistry/chemistry-jar-resource-bundle/trunk/src/main/resources/META-INF/
incubator/chemistry/chemistry-jar-resource-bundle/trunk/src/main/resources/META-INF/NOTICE.vm
(with props)
Added: incubator/chemistry/chemistry-jar-resource-bundle/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/chemistry/chemistry-jar-resource-bundle/trunk/pom.xml?rev=995759&view=auto
==============================================================================
--- incubator/chemistry/chemistry-jar-resource-bundle/trunk/pom.xml (added)
+++ incubator/chemistry/chemistry-jar-resource-bundle/trunk/pom.xml Fri Sep 10
11:40:23 2010
@@ -0,0 +1,25 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.apache.chemistry.resources</groupId>
+ <artifactId>chemistry-jar-resource-bundle</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <packaging>jar</packaging>
+
+ <name>chemistry-jar-resource-bundle</name>
+ <url>http://maven.apache.org</url>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
Propchange: incubator/chemistry/chemistry-jar-resource-bundle/trunk/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Added:
incubator/chemistry/chemistry-jar-resource-bundle/trunk/src/main/resources/META-INF/NOTICE.vm
URL:
http://svn.apache.org/viewvc/incubator/chemistry/chemistry-jar-resource-bundle/trunk/src/main/resources/META-INF/NOTICE.vm?rev=995759&view=auto
==============================================================================
---
incubator/chemistry/chemistry-jar-resource-bundle/trunk/src/main/resources/META-INF/NOTICE.vm
(added)
+++
incubator/chemistry/chemistry-jar-resource-bundle/trunk/src/main/resources/META-INF/NOTICE.vm
Fri Sep 10 11:40:23 2010
@@ -0,0 +1,39 @@
+##
+## 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.
+##
+## $Id: NOTICE.vm 638319 2008-03-18 11:10:09Z vsiveton $
+##
+
+#if ($projectName)$projectName#else${project.name}#end
+
+Copyright ${projectTimespan}#if($project.organization.name)
$project.organization.name#else The Apache Software Foundation#end
+
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+
+Follows a reference to source / project page for dependencies (contained in
this package) as required by http://www.apache.org/legal/3party.html:
+
+#foreach ( $project in $projects )
+#foreach ( $license in $project.licenses )
+#if ($license.name.indexOf("CDDL") > -1)
+ - #if (!$project.name.equals("Unnamed")) $project.name - #end
$project.artifact #if($project.url)($project.url)#end License: $license.name
#if ($license.url) ($license.url)#end
+
+#end
+#end
+#end
\ No newline at end of file
Propchange:
incubator/chemistry/chemistry-jar-resource-bundle/trunk/src/main/resources/META-INF/NOTICE.vm
------------------------------------------------------------------------------
svn:eol-style = native