From a76e5fba254aacc37c291014a46fb9921f5df058 Mon Sep 17 00:00:00 2001 From: Chirag Dewan Date: Fri, 7 Sep 2018 21:44:49 +0530 Subject: [PATCH] BAEL1426 - Kafka Transactional API. Updating the kafka-clients version to 2.0.0 --- libraries/pom.xml | 39 +------------------ .../com/baeldung/jetty/HelloWorldServlet.java | 28 ------------- libraries/src/main/webapp/WEB-INF/web.xml | 10 ----- libraries/src/main/webapp/helloworld.html | 9 ----- 4 files changed, 2 insertions(+), 84 deletions(-) delete mode 100644 libraries/src/main/java/com/baeldung/jetty/HelloWorldServlet.java delete mode 100644 libraries/src/main/webapp/WEB-INF/web.xml delete mode 100644 libraries/src/main/webapp/helloworld.html diff --git a/libraries/pom.xml b/libraries/pom.xml index 83d78af84f..cff67791cd 100644 --- a/libraries/pom.xml +++ b/libraries/pom.xml @@ -795,8 +795,8 @@ http://dl.bintray.com/cuba-platform/main - Maven Central - https://repo.maven.apache.org/maven2/ + Apache Staging + https://repository.apache.org/content/groups/staging @@ -912,41 +912,6 @@ - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - - org.apache.maven.plugins - - - maven-pmd-plugin - - - [3.8,) - - - check - - - - - - - - - - - - diff --git a/libraries/src/main/java/com/baeldung/jetty/HelloWorldServlet.java b/libraries/src/main/java/com/baeldung/jetty/HelloWorldServlet.java deleted file mode 100644 index d730e70ad2..0000000000 --- a/libraries/src/main/java/com/baeldung/jetty/HelloWorldServlet.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.baeldung.jetty; - -import java.io.IOException; -import java.io.PrintWriter; - -import javax.servlet.ServletException; -import javax.servlet.annotation.WebServlet; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -@WebServlet("/helloworld") -public class HelloWorldServlet extends HttpServlet { - - private static final long serialVersionUID = 2851388791344172542L; - - @Override - protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { - - PrintWriter writer = resp.getWriter(); - writer.println(""); - writer.println(""); - writer.println(""); - writer.println("

Hello World!

"); - writer.println(""); - writer.println(""); - } -} diff --git a/libraries/src/main/webapp/WEB-INF/web.xml b/libraries/src/main/webapp/WEB-INF/web.xml deleted file mode 100644 index 364bcd9587..0000000000 --- a/libraries/src/main/webapp/WEB-INF/web.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - helloworld.html - - \ No newline at end of file diff --git a/libraries/src/main/webapp/helloworld.html b/libraries/src/main/webapp/helloworld.html deleted file mode 100644 index bfc75f2592..0000000000 --- a/libraries/src/main/webapp/helloworld.html +++ /dev/null @@ -1,9 +0,0 @@ - - - - -Hello World - -Hello World! - - \ No newline at end of file