mirror of https://github.com/apache/activemq.git
Update RAT plugin to use latest version, add exclusions for eclipse
settins files and the KahaDB data folders created during most test runs. Add missing headers to a couple files.
This commit is contained in:
parent
a79f317d31
commit
50604ad932
|
@ -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.activemq.transport.util;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
|
|
|
@ -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.activemq.xbean;
|
||||
|
||||
import java.net.URI;
|
||||
|
@ -16,5 +32,4 @@ public class DestinationBridgeAccessorsTest extends Assert {
|
|||
|
||||
assertNotNull(broker);
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +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.
|
||||
## ---------------------------------------------------------------------------
|
||||
|
4
pom.xml
4
pom.xml
|
@ -166,7 +166,7 @@
|
|||
<cobertura-maven-plugin-version>2.5.2</cobertura-maven-plugin-version>
|
||||
<taglist-maven-plugin-version>2.4</taglist-maven-plugin-version>
|
||||
<build-helper-maven-plugin-version>1.8</build-helper-maven-plugin-version>
|
||||
<apache-rat-plugin-version>0.9</apache-rat-plugin-version>
|
||||
<apache-rat-plugin-version>0.11</apache-rat-plugin-version>
|
||||
<ianal-maven-plugin-version>1.0-alpha-1</ianal-maven-plugin-version>
|
||||
<depends-maven-plugin-version>1.2</depends-maven-plugin-version>
|
||||
<maven-dependency-plugin-version>2.8</maven-dependency-plugin-version>
|
||||
|
@ -1419,6 +1419,7 @@
|
|||
<exclude>**/webapp/js/plotkit/**/*</exclude>
|
||||
<!-- Eclipse files -->
|
||||
<exclude>**/.*</exclude>
|
||||
<exclude>**/.settings/*</exclude>
|
||||
<exclude>**/eclipse-classes/**/*</exclude>
|
||||
<exclude>**/target/**/*</exclude>
|
||||
<exclude>**/*.iml</exclude>
|
||||
|
@ -1427,6 +1428,7 @@
|
|||
<exclude>**/.idea/**/*</exclude>
|
||||
<exclude>.git/**/*</exclude>
|
||||
<exclude>**/LevelDB/**/*</exclude>
|
||||
<exclude>**/activemq-data/**/*</exclude>
|
||||
<exclude>**/dependency-reduced-pom.xml</exclude>
|
||||
<exclude>**/*.sln</exclude>
|
||||
<exclude>**/*.userprefs</exclude>
|
||||
|
|
Loading…
Reference in New Issue