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 8eed888f35ed6cdbb8437190ec7541732e2bfca1 Author: Bertty Contreras-Rojas <[email protected]> AuthorDate: Mon Apr 5 23:10:36 2021 -0400 [WAYANG-28] creation of module wayang-hackit-core --- wayang-plugins/wayang-hackit/pom.xml | 5 +++++ .../wayang-hackit/{ => wayang-hackit-core}/pom.xml | 13 ++++--------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/wayang-plugins/wayang-hackit/pom.xml b/wayang-plugins/wayang-hackit/pom.xml index b14f3e1..5b7e09c 100644 --- a/wayang-plugins/wayang-hackit/pom.xml +++ b/wayang-plugins/wayang-hackit/pom.xml @@ -11,11 +11,16 @@ <modelVersion>4.0.0</modelVersion> <artifactId>wayang-hackit</artifactId> + <packaging>pom</packaging> <name>Wayang Hackit</name> + <description> This Wayang module contains the implementation of the paper https://wayang.apache.org/assets/pdf/paper/socc19.pdf </description> + <modules> + <module>wayang-hackit-core</module> + </modules> <properties> diff --git a/wayang-plugins/wayang-hackit/pom.xml b/wayang-plugins/wayang-hackit/wayang-hackit-core/pom.xml similarity index 62% copy from wayang-plugins/wayang-hackit/pom.xml copy to wayang-plugins/wayang-hackit/wayang-hackit-core/pom.xml index b14f3e1..d7b16d1 100644 --- a/wayang-plugins/wayang-hackit/pom.xml +++ b/wayang-plugins/wayang-hackit/wayang-hackit-core/pom.xml @@ -3,22 +3,17 @@ 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> + <artifactId>wayang-hackit</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> + <artifactId>wayang-hackit-core</artifactId> <properties> - + <maven.compiler.source>8</maven.compiler.source> + <maven.compiler.target>8</maven.compiler.target> </properties> </project>
