This is an automated email from the ASF dual-hosted git repository.
painter pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/turbine-core.git
The following commit(s) were added to refs/heads/trunk by this push:
new c1fc864 Add missing license files
c1fc864 is described below
commit c1fc8642d63f22ea819550f83e53d3319a826ae5
Author: Jeffery Painter <[email protected]>
AuthorDate: Thu Nov 25 07:25:20 2021 -0500
Add missing license files
---
src/java/org/apache/turbine/util/uri/TemplateURI.java | 19 +++++++++++++++++++
.../urlmapper/model/URLMappingContainerTest.java | 19 +++++++++++++++++++
.../urlmapper/model/YamlURLMappingContainerTest.java | 19 +++++++++++++++++++
src/test/org/apache/turbine/test/HsqlDB.java | 19 +++++++++++++++++++
.../BuildContainerWithDockerfileTest.java | 19 +++++++++++++++++++
.../testcontainer/UserManagerWithContainerTest.java | 19 +++++++++++++++++++
6 files changed, 114 insertions(+)
diff --git a/src/java/org/apache/turbine/util/uri/TemplateURI.java
b/src/java/org/apache/turbine/util/uri/TemplateURI.java
index ec5618e..58758fa 100644
--- a/src/java/org/apache/turbine/util/uri/TemplateURI.java
+++ b/src/java/org/apache/turbine/util/uri/TemplateURI.java
@@ -1,6 +1,25 @@
package org.apache.turbine.util.uri;
+/*
+ * 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.commons.lang3.StringUtils;
import org.apache.fulcrum.parser.ParameterParser;
import org.apache.turbine.util.RunData;
diff --git
a/src/test/org/apache/turbine/services/urlmapper/model/URLMappingContainerTest.java
b/src/test/org/apache/turbine/services/urlmapper/model/URLMappingContainerTest.java
index 45b6412..e8a6ec3 100644
---
a/src/test/org/apache/turbine/services/urlmapper/model/URLMappingContainerTest.java
+++
b/src/test/org/apache/turbine/services/urlmapper/model/URLMappingContainerTest.java
@@ -1,5 +1,24 @@
package org.apache.turbine.services.urlmapper.model;
+/*
+ * 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 static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertNotNull;
diff --git
a/src/test/org/apache/turbine/services/urlmapper/model/YamlURLMappingContainerTest.java
b/src/test/org/apache/turbine/services/urlmapper/model/YamlURLMappingContainerTest.java
index 89d4922..52a64f2 100644
---
a/src/test/org/apache/turbine/services/urlmapper/model/YamlURLMappingContainerTest.java
+++
b/src/test/org/apache/turbine/services/urlmapper/model/YamlURLMappingContainerTest.java
@@ -1,5 +1,24 @@
package org.apache.turbine.services.urlmapper.model;
+/*
+ * 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 static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
diff --git a/src/test/org/apache/turbine/test/HsqlDB.java
b/src/test/org/apache/turbine/test/HsqlDB.java
index cf656ab..cdfb1ae 100644
--- a/src/test/org/apache/turbine/test/HsqlDB.java
+++ b/src/test/org/apache/turbine/test/HsqlDB.java
@@ -1,5 +1,24 @@
package org.apache.turbine.test;
+/*
+ * 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.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Paths;
diff --git
a/src/test/org/apache/turbine/testcontainer/BuildContainerWithDockerfileTest.java
b/src/test/org/apache/turbine/testcontainer/BuildContainerWithDockerfileTest.java
index ff308f4..520623c 100644
---
a/src/test/org/apache/turbine/testcontainer/BuildContainerWithDockerfileTest.java
+++
b/src/test/org/apache/turbine/testcontainer/BuildContainerWithDockerfileTest.java
@@ -1,5 +1,24 @@
package org.apache.turbine.testcontainer;
+/*
+ * 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 static junit.framework.TestCase.assertEquals;
import static junit.framework.TestCase.assertFalse;
import static junit.framework.TestCase.assertTrue;
diff --git
a/src/test/org/apache/turbine/testcontainer/UserManagerWithContainerTest.java
b/src/test/org/apache/turbine/testcontainer/UserManagerWithContainerTest.java
index 8714d91..a5ad159 100644
---
a/src/test/org/apache/turbine/testcontainer/UserManagerWithContainerTest.java
+++
b/src/test/org/apache/turbine/testcontainer/UserManagerWithContainerTest.java
@@ -1,5 +1,24 @@
package org.apache.turbine.testcontainer;
+/*
+ * 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 static junit.framework.TestCase.assertEquals;
import static junit.framework.TestCase.assertTrue;
import static junit.framework.TestCase.fail;