This is an automated email from the ASF dual-hosted git repository. bertty pushed a commit to branch debugger in repository https://gitbox.apache.org/repos/asf/incubator-wayang.git
commit 0d5f3d61aec626cf6f54ebce329d33bfdbd4a46f Author: Bertty Contreras-Rojas <[email protected]> AuthorDate: Mon Apr 5 23:07:32 2021 -0400 [WAYANG-28] creation of module wayang-hackit --- wayang-plugins/pom.xml | 1 + wayang-plugins/wayang-hackit/pom.xml | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/wayang-plugins/pom.xml b/wayang-plugins/pom.xml index 7178326..90bd0d7 100644 --- a/wayang-plugins/pom.xml +++ b/wayang-plugins/pom.xml @@ -40,6 +40,7 @@ <modules> <module>wayang-iejoin</module> + <module>wayang-hackit</module> </modules> diff --git a/wayang-plugins/wayang-hackit/pom.xml b/wayang-plugins/wayang-hackit/pom.xml new file mode 100644 index 0000000..b14f3e1 --- /dev/null +++ b/wayang-plugins/wayang-hackit/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <parent> + <artifactId>wayang-plugins</artifactId> + <groupId>org.apache.wayang</groupId> + <version>0.6.0-SNAPSHOT</version> + </parent> + + <modelVersion>4.0.0</modelVersion> + + <artifactId>wayang-hackit</artifactId> + + <name>Wayang Hackit</name> + <description> + This Wayang module contains the implementation of the paper https://wayang.apache.org/assets/pdf/paper/socc19.pdf + </description> + + <properties> + + </properties> + +</project>
