This is an automated email from the ASF dual-hosted git repository.
glauesppen pushed a commit to branch rel/0.7.1
in repository https://gitbox.apache.org/repos/asf/incubator-wayang.git
The following commit(s) were added to refs/heads/rel/0.7.1 by this push:
new d767ca50 fixing build error in wayang-iejoin
d767ca50 is described below
commit d767ca501338fa66eda02800ce96a6df59e633af
Author: Glaucia <[email protected]>
AuthorDate: Sun Sep 3 17:44:22 2023 +0100
fixing build error in wayang-iejoin
---
README.md | 2 +-
wayang-plugins/wayang-iejoin/pom.xml | 31 +++++++++++++++----------------
2 files changed, 16 insertions(+), 17 deletions(-)
diff --git a/README.md b/README.md
index fe1dc84a..6461a7c4 100644
--- a/README.md
+++ b/README.md
@@ -56,7 +56,7 @@ For a quick guide on how to use Wayang in your Java/Scala
project see [here](gui
## Installing Wayang
-You first have to build the binaries as shown [here](tutorial.md).
+You first have to build the binaries as shown [here](guides/tutorial.md).
Once you have the binaries built, follow these steps to install Wayang:
```shell
diff --git a/wayang-plugins/wayang-iejoin/pom.xml
b/wayang-plugins/wayang-iejoin/pom.xml
index 961487aa..5531b881 100644
--- a/wayang-plugins/wayang-iejoin/pom.xml
+++ b/wayang-plugins/wayang-iejoin/pom.xml
@@ -18,48 +18,47 @@
~ under the License.
~
-->
-
+
<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">
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
-
+
<parent>
<artifactId>wayang-plugins</artifactId>
<groupId>org.apache.wayang</groupId>
- <version>0.7.1-SNAPSHOT</version>
+ <version>0.7.1</version>
</parent>
-
+
<artifactId>wayang-iejoin</artifactId>
- <version>0.7.1-SNAPSHOT</version>
-
+ <version>0.7.1</version>
+
<properties>
<java-module-name>org.apache.wayang.extensions.iejoin</java-module-name>
</properties>
-
+
<dependencies>
<dependency>
<groupId>org.apache.wayang</groupId>
<artifactId>wayang-core</artifactId>
- <version>0.7.1-SNAPSHOT</version>
+ <version>0.7.1</version>
</dependency>
<dependency>
<groupId>org.apache.wayang</groupId>
<artifactId>wayang-basic</artifactId>
- <version>0.7.1-SNAPSHOT</version>
+ <version>0.7.1</version>
</dependency>
<dependency>
<groupId>org.apache.wayang</groupId>
<artifactId>wayang-java</artifactId>
- <version>0.7.1-SNAPSHOT</version>
+ <version>0.7.1</version>
</dependency>
</dependencies>
-
-
+
+
<modules>
- <module>wayang-iejoin_2.11</module>
<module>wayang-iejoin_2.12</module>
</modules>
-
+
<profiles>
<profile>
<id>java8</id>
@@ -67,8 +66,8 @@
<jdk>1.8</jdk>
</activation>
<modules>
- <module>wayang-iejoin_2.11</module>
+ <module>wayang-iejoin_2.12</module>
</modules>
</profile>
</profiles>
-</project>
+</project>
\ No newline at end of file