This is an automated email from the ASF dual-hosted git repository.

remm pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/tomcat-maven-plugin.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 64a5d0c  Add back concrete classes
64a5d0c is described below

commit 64a5d0cb012631a20b99d1b0ddb78d5b4132c8a4
Author: remm <[email protected]>
AuthorDate: Tue Apr 14 12:04:42 2026 +0200

    Add back concrete classes
---
 pom.xml                                            |  2 ++
 .../maven/it/TomcatDeployWarOnlyProjectIT.java     | 29 +++++++++++++++
 .../tomcat/maven/it/TomcatDeployWarProjectIT.java  | 28 +++++++++++++++
 .../tomcat/maven/it/TomcatRunMultiConfigIT.java    | 37 +++++++++++++++++++
 .../tomcat/maven/it/TomcatSimpleWarProjectIT.java  | 42 ++++++++++++++++++++++
 5 files changed, 138 insertions(+)

diff --git a/pom.xml b/pom.xml
index 1a0f8ab..ca56a56 100644
--- a/pom.xml
+++ b/pom.xml
@@ -882,6 +882,8 @@
             </repositories>
         </profile>
 
+        <!-- For integration tests the plugin needs to be installed before
+               the integration tests are executed -->
         <profile>
             <id>run-its</id>
             <build>
diff --git 
a/src/test/java/org/apache/tomcat/maven/it/TomcatDeployWarOnlyProjectIT.java 
b/src/test/java/org/apache/tomcat/maven/it/TomcatDeployWarOnlyProjectIT.java
new file mode 100644
index 0000000..eac29bb
--- /dev/null
+++ b/src/test/java/org/apache/tomcat/maven/it/TomcatDeployWarOnlyProjectIT.java
@@ -0,0 +1,29 @@
+package org.apache.tomcat.maven.it;
+/*
+ * 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.
+ */
+
+/**
+ * @author Olivier Lamy
+ */
+public class TomcatDeployWarOnlyProjectIT
+    extends AbstractDeployWarOnlyProjectIT
+{
+    // no op
+
+}
diff --git 
a/src/test/java/org/apache/tomcat/maven/it/TomcatDeployWarProjectIT.java 
b/src/test/java/org/apache/tomcat/maven/it/TomcatDeployWarProjectIT.java
new file mode 100644
index 0000000..fb68a3d
--- /dev/null
+++ b/src/test/java/org/apache/tomcat/maven/it/TomcatDeployWarProjectIT.java
@@ -0,0 +1,28 @@
+package org.apache.tomcat.maven.it;
+/*
+ * 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.
+ */
+
+/**
+ * @author Olivier Lamy
+ */
+public class TomcatDeployWarProjectIT
+    extends AbstractDeployWarProjectIT
+{
+    // no op
+}
diff --git 
a/src/test/java/org/apache/tomcat/maven/it/TomcatRunMultiConfigIT.java 
b/src/test/java/org/apache/tomcat/maven/it/TomcatRunMultiConfigIT.java
new file mode 100644
index 0000000..7f12020
--- /dev/null
+++ b/src/test/java/org/apache/tomcat/maven/it/TomcatRunMultiConfigIT.java
@@ -0,0 +1,37 @@
+package org.apache.tomcat.maven.it;
+/*
+ * 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.it.VerificationException;
+
+/**
+ * @author Olivier Lamy
+ */
+public class TomcatRunMultiConfigIT
+    extends AbstractTomcatRunMultiConfigIT
+{
+    @Override
+    protected void verifyConnectorsStarted()
+        throws VerificationException
+    {
+        verifier.verifyTextInLog("INFO: Starting ProtocolHandler [\"http-nio-" 
+ getHttpItPort() + "\"]");
+        verifier.verifyTextInLog("INFO: Starting ProtocolHandler [\"http-nio-" 
+ getHttpsItPort() + "\"]");
+        verifier.verifyTextInLog("INFO: Starting ProtocolHandler [\"ajp-bio-" 
+ getAjpItPort() + "\"]");
+    }
+}
diff --git 
a/src/test/java/org/apache/tomcat/maven/it/TomcatSimpleWarProjectIT.java 
b/src/test/java/org/apache/tomcat/maven/it/TomcatSimpleWarProjectIT.java
new file mode 100644
index 0000000..f87a8f5
--- /dev/null
+++ b/src/test/java/org/apache/tomcat/maven/it/TomcatSimpleWarProjectIT.java
@@ -0,0 +1,42 @@
+package org.apache.tomcat.maven.it;
+/*
+ * 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.it.VerificationException;
+
+/**
+ * @author Olivier Lamy
+ */
+public class TomcatSimpleWarProjectIT
+    extends AbstractSimpleWarProjectIT
+{
+    protected int getTimeout()
+    {
+        return 20000;
+    }
+
+    @Override
+    protected void verifyConnectorsStarted()
+        throws VerificationException
+    {
+        verifier.verifyTextInLog("INFO: Starting ProtocolHandler [\"http-nio-" 
+ getHttpItPort() + "\"]");
+
+        verifier.verifyTextInLog( "INFO: Starting ProtocolHandler 
[\"ajp-bio-"+ getAjpItPort() +"\"]" );
+    }
+}


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to