You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wayang.apache.org by rp...@apache.org on 2021/05/06 22:12:56 UTC

[incubator-wayang] branch debugger-sidecar created (now 683031a)

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

rpardomeza pushed a change to branch debugger-sidecar
in repository https://gitbox.apache.org/repos/asf/incubator-wayang.git.


      at 683031a  [WAYANG-30] Creating Hackit submodule for Debug processing

This branch includes the following new commits:

     new 683031a  [WAYANG-30] Creating Hackit submodule for Debug processing

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[incubator-wayang] 01/01: [WAYANG-30] Creating Hackit submodule for Debug processing

Posted by rp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rpardomeza pushed a commit to branch debugger-sidecar
in repository https://gitbox.apache.org/repos/asf/incubator-wayang.git

commit 683031a45e3ff8e2bc4cb3f68d7479081cf672d5
Author: rodrigopardomeza <ro...@gmail.com>
AuthorDate: Thu May 6 18:12:31 2021 -0400

    [WAYANG-30] Creating Hackit submodule for Debug processing
---
 .../wayang-hackit/wayang-hackit-sidecar/pom.xml    | 28 ++++++++++++++++++++++
 .../wayang/hackit/sidecar/HackitSidecar.java       |  9 +++++++
 .../hackit/sidecar/webservice/WebService.java      |  4 ++++
 3 files changed, 41 insertions(+)

diff --git a/wayang-plugins/wayang-hackit/wayang-hackit-sidecar/pom.xml b/wayang-plugins/wayang-hackit/wayang-hackit-sidecar/pom.xml
index 64ba661..2eab5e2 100644
--- a/wayang-plugins/wayang-hackit/wayang-hackit-sidecar/pom.xml
+++ b/wayang-plugins/wayang-hackit/wayang-hackit-sidecar/pom.xml
@@ -34,4 +34,32 @@
         <maven.compiler.target>11</maven.compiler.target>
     </properties>
 
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.springframework.boot</groupId>
+                <artifactId>spring-boot-dependencies</artifactId>
+                <type>pom</type>
+                <version>2.4.5</version>
+                <scope>import</scope>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter</artifactId>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.springframework.boot</groupId>
+                <artifactId>spring-boot-maven-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>
diff --git a/wayang-plugins/wayang-hackit/wayang-hackit-sidecar/src/main/java/org/apache/wayang/hackit/sidecar/HackitSidecar.java b/wayang-plugins/wayang-hackit/wayang-hackit-sidecar/src/main/java/org/apache/wayang/hackit/sidecar/HackitSidecar.java
index 7200fa4..b6933d1 100644
--- a/wayang-plugins/wayang-hackit/wayang-hackit-sidecar/src/main/java/org/apache/wayang/hackit/sidecar/HackitSidecar.java
+++ b/wayang-plugins/wayang-hackit/wayang-hackit-sidecar/src/main/java/org/apache/wayang/hackit/sidecar/HackitSidecar.java
@@ -19,5 +19,14 @@
 
 package org.apache.wayang.hackit.sidecar;
 
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
 public class HackitSidecar {
+
+    public static void main(String[] args) {
+        SpringApplication.run(HackitSidecar.class, args);
+    }
+
 }
diff --git a/wayang-plugins/wayang-hackit/wayang-hackit-sidecar/src/main/java/org/apache/wayang/hackit/sidecar/webservice/WebService.java b/wayang-plugins/wayang-hackit/wayang-hackit-sidecar/src/main/java/org/apache/wayang/hackit/sidecar/webservice/WebService.java
new file mode 100644
index 0000000..de50c11
--- /dev/null
+++ b/wayang-plugins/wayang-hackit/wayang-hackit-sidecar/src/main/java/org/apache/wayang/hackit/sidecar/webservice/WebService.java
@@ -0,0 +1,4 @@
+package org.apache.wayang.hackit.sidecar.webservice;
+
+public class WebService {
+}