Author: veithen Date: Thu Dec 16 21:41:12 2010 New Revision: 1050176 URL: http://svn.apache.org/viewvc?rev=1050176&view=rev Log: Configured the RAT plugin and added missing license headers.
Modified: axis/axis2/java/sandesha/trunk/modules/persistence/pom.xml axis/axis2/java/sandesha/trunk/modules/persistence/src/resources/ddl/sandesha2-derby.ddl axis/axis2/java/sandesha/trunk/modules/persistence/src/resources/ddl/sandesha2-mysql.ddl axis/axis2/java/sandesha/trunk/modules/persistence/src/resources/module_config_axis2.xml axis/axis2/java/sandesha/trunk/modules/persistence/test-resources/sandesha2-test.properties axis/axis2/java/sandesha/trunk/modules/persistence/test.build.xml axis/axis2/java/sandesha/trunk/pom.xml Modified: axis/axis2/java/sandesha/trunk/modules/persistence/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/persistence/pom.xml?rev=1050176&r1=1050175&r2=1050176&view=diff ============================================================================== --- axis/axis2/java/sandesha/trunk/modules/persistence/pom.xml (original) +++ axis/axis2/java/sandesha/trunk/modules/persistence/pom.xml Thu Dec 16 21:41:12 2010 @@ -1,3 +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. +--> <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/maven-v4_0_0.xsd"> <parent> Modified: axis/axis2/java/sandesha/trunk/modules/persistence/src/resources/ddl/sandesha2-derby.ddl URL: http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/persistence/src/resources/ddl/sandesha2-derby.ddl?rev=1050176&r1=1050175&r2=1050176&view=diff ============================================================================== --- axis/axis2/java/sandesha/trunk/modules/persistence/src/resources/ddl/sandesha2-derby.ddl (original) +++ axis/axis2/java/sandesha/trunk/modules/persistence/src/resources/ddl/sandesha2-derby.ddl Thu Dec 16 21:41:12 2010 @@ -1,3 +1,20 @@ +-- 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. + drop table wsrm_sender; create table wsrm_sender ( message_id varchar(255) not null, Modified: axis/axis2/java/sandesha/trunk/modules/persistence/src/resources/ddl/sandesha2-mysql.ddl URL: http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/persistence/src/resources/ddl/sandesha2-mysql.ddl?rev=1050176&r1=1050175&r2=1050176&view=diff ============================================================================== --- axis/axis2/java/sandesha/trunk/modules/persistence/src/resources/ddl/sandesha2-mysql.ddl (original) +++ axis/axis2/java/sandesha/trunk/modules/persistence/src/resources/ddl/sandesha2-mysql.ddl Thu Dec 16 21:41:12 2010 @@ -1,3 +1,20 @@ +-- 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. + drop table if exists wsrm_sender; create table wsrm_sender ( message_id varchar(255) not null, Modified: axis/axis2/java/sandesha/trunk/modules/persistence/src/resources/module_config_axis2.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/persistence/src/resources/module_config_axis2.xml?rev=1050176&r1=1050175&r2=1050176&view=diff ============================================================================== --- axis/axis2/java/sandesha/trunk/modules/persistence/src/resources/module_config_axis2.xml (original) +++ axis/axis2/java/sandesha/trunk/modules/persistence/src/resources/module_config_axis2.xml Thu Dec 16 21:41:12 2010 @@ -1,3 +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. +--> <!-- Add something like this in axis2.xml for the right DB --> <moduleConfig name="sandesha2"> <!-- MySQL Modified: axis/axis2/java/sandesha/trunk/modules/persistence/test-resources/sandesha2-test.properties URL: http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/persistence/test-resources/sandesha2-test.properties?rev=1050176&r1=1050175&r2=1050176&view=diff ============================================================================== --- axis/axis2/java/sandesha/trunk/modules/persistence/test-resources/sandesha2-test.properties (original) +++ axis/axis2/java/sandesha/trunk/modules/persistence/test-resources/sandesha2-test.properties Thu Dec 16 21:41:12 2010 @@ -1 +1,17 @@ +# 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. test.server.port=8060 Modified: axis/axis2/java/sandesha/trunk/modules/persistence/test.build.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/persistence/test.build.xml?rev=1050176&r1=1050175&r2=1050176&view=diff ============================================================================== --- axis/axis2/java/sandesha/trunk/modules/persistence/test.build.xml (original) +++ axis/axis2/java/sandesha/trunk/modules/persistence/test.build.xml Thu Dec 16 21:41:12 2010 @@ -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. +--> <project basedir="." default="prepare"> <property name="derby.dir" value="${build.dir}/derby" /> <property name="local.repo.derby" value="${local.repo}/org/apache/derby" /> Modified: axis/axis2/java/sandesha/trunk/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/pom.xml?rev=1050176&r1=1050175&r2=1050176&view=diff ============================================================================== --- axis/axis2/java/sandesha/trunk/pom.xml (original) +++ axis/axis2/java/sandesha/trunk/pom.xml Thu Dec 16 21:41:12 2010 @@ -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. +--> <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/maven-v4_0_0.xsd"> <parent> @@ -135,6 +153,26 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <version>0.7</version> + <executions> + <execution> + <phase>verify</phase> + <goals> + <goal>check</goal> + </goals> + <configuration> + <excludes> + <exclude>dependency-reduced-pom.xml</exclude> + <!-- TODO: this should not be necessary; it is a bad practice to generate log files in source directories --> + <exclude>*.log</exclude> + </excludes> + </configuration> + </execution> + </executions> + </plugin> </plugins> <pluginManagement> <plugins>