This is an automated email from the ASF dual-hosted git repository.
elharo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-rar-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 0f417e1 Remove dupliate license headers (#148)
0f417e1 is described below
commit 0f417e1c121efa4493cc4ade57b0c54a6346812d
Author: Elliotte Rusty Harold <[email protected]>
AuthorDate: Mon Nov 10 19:10:02 2025 -0600
Remove dupliate license headers (#148)
---
.../org/apache/maven/plugins/rar/RarResource.java | 19 -------------------
.../rar/internal/RarLifecycleMappingProvider.java | 19 -------------------
.../org/apache/maven/plugins/rar/RarMojoTest.java | 19 -------------------
.../maven/plugins/rar/stubs/ArtifactHandlerStub.java | 19 -------------------
.../maven/plugins/rar/stubs/RarMavenProjectStub.java | 19 -------------------
.../maven/plugins/rar/stubs/RarMavenProjectStub2.java | 19 -------------------
.../maven/plugins/rar/stubs/RarMavenProjectStub3.java | 19 -------------------
7 files changed, 133 deletions(-)
diff --git a/src/main/java/org/apache/maven/plugins/rar/RarResource.java
b/src/main/java/org/apache/maven/plugins/rar/RarResource.java
index 50ffbcc..dcff9f6 100644
--- a/src/main/java/org/apache/maven/plugins/rar/RarResource.java
+++ b/src/main/java/org/apache/maven/plugins/rar/RarResource.java
@@ -18,25 +18,6 @@
*/
package org.apache.maven.plugins.rar;
-/*
- * 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.
- */
-
import org.apache.maven.model.Resource;
/**
diff --git
a/src/main/java/org/apache/maven/plugins/rar/internal/RarLifecycleMappingProvider.java
b/src/main/java/org/apache/maven/plugins/rar/internal/RarLifecycleMappingProvider.java
index 1987386..4d591d6 100644
---
a/src/main/java/org/apache/maven/plugins/rar/internal/RarLifecycleMappingProvider.java
+++
b/src/main/java/org/apache/maven/plugins/rar/internal/RarLifecycleMappingProvider.java
@@ -18,25 +18,6 @@
*/
package org.apache.maven.plugins.rar.internal;
-/*
- * 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.
- */
-
import javax.inject.Named;
import javax.inject.Provider;
import javax.inject.Singleton;
diff --git a/src/test/java/org/apache/maven/plugins/rar/RarMojoTest.java
b/src/test/java/org/apache/maven/plugins/rar/RarMojoTest.java
index 8dcb9db..d12f42c 100644
--- a/src/test/java/org/apache/maven/plugins/rar/RarMojoTest.java
+++ b/src/test/java/org/apache/maven/plugins/rar/RarMojoTest.java
@@ -18,25 +18,6 @@
*/
package org.apache.maven.plugins.rar;
-/*
- * 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.
- */
-
import java.io.File;
import java.util.ArrayList;
import java.util.Enumeration;
diff --git
a/src/test/java/org/apache/maven/plugins/rar/stubs/ArtifactHandlerStub.java
b/src/test/java/org/apache/maven/plugins/rar/stubs/ArtifactHandlerStub.java
index 75e1e36..0ee574a 100644
--- a/src/test/java/org/apache/maven/plugins/rar/stubs/ArtifactHandlerStub.java
+++ b/src/test/java/org/apache/maven/plugins/rar/stubs/ArtifactHandlerStub.java
@@ -18,25 +18,6 @@
*/
package org.apache.maven.plugins.rar.stubs;
-/*
- * 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.
- */
-
import org.apache.maven.artifact.handler.DefaultArtifactHandler;
public class ArtifactHandlerStub extends DefaultArtifactHandler {
diff --git
a/src/test/java/org/apache/maven/plugins/rar/stubs/RarMavenProjectStub.java
b/src/test/java/org/apache/maven/plugins/rar/stubs/RarMavenProjectStub.java
index 1ca945c..8eb5b64 100644
--- a/src/test/java/org/apache/maven/plugins/rar/stubs/RarMavenProjectStub.java
+++ b/src/test/java/org/apache/maven/plugins/rar/stubs/RarMavenProjectStub.java
@@ -18,25 +18,6 @@
*/
package org.apache.maven.plugins.rar.stubs;
-/*
- * 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.
- */
-
import java.io.File;
import java.util.ArrayList;
import java.util.Collections;
diff --git
a/src/test/java/org/apache/maven/plugins/rar/stubs/RarMavenProjectStub2.java
b/src/test/java/org/apache/maven/plugins/rar/stubs/RarMavenProjectStub2.java
index 16c3068..f0805d4 100644
--- a/src/test/java/org/apache/maven/plugins/rar/stubs/RarMavenProjectStub2.java
+++ b/src/test/java/org/apache/maven/plugins/rar/stubs/RarMavenProjectStub2.java
@@ -18,25 +18,6 @@
*/
package org.apache.maven.plugins.rar.stubs;
-/*
- * 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.
- */
-
import java.io.File;
public class RarMavenProjectStub2 extends RarMavenProjectStub {
diff --git
a/src/test/java/org/apache/maven/plugins/rar/stubs/RarMavenProjectStub3.java
b/src/test/java/org/apache/maven/plugins/rar/stubs/RarMavenProjectStub3.java
index 92baa26..4fa2fc0 100644
--- a/src/test/java/org/apache/maven/plugins/rar/stubs/RarMavenProjectStub3.java
+++ b/src/test/java/org/apache/maven/plugins/rar/stubs/RarMavenProjectStub3.java
@@ -18,25 +18,6 @@
*/
package org.apache.maven.plugins.rar.stubs;
-/*
- * 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.
- */
-
import java.io.File;
public class RarMavenProjectStub3 extends RarMavenProjectStub {