This is an automated email from the ASF dual-hosted git repository. bertty pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-wayang.git
commit cbab525660d2c54511075bd79e57fdc48f91daef Author: Bertty Contreras-Rojas <[email protected]> AuthorDate: Tue Oct 19 00:52:18 2021 +0200 [RELEASE][PREPARATION] remove the distro module Signed-off-by: bertty <[email protected]> --- pom.xml | 6 -- wayang-distro/pom.xml | 121 ---------------------------------- wayang-distro/src/assembly/distro.xml | 30 --------- 3 files changed, 157 deletions(-) diff --git a/pom.xml b/pom.xml index 3b53d0f..e1d8f4a 100644 --- a/pom.xml +++ b/pom.xml @@ -160,12 +160,6 @@ </properties> </profile> <profile> - <id>distro</id> - <modules> - <module>wayang-distro</module> - </modules> - </profile> - <profile> <!-- Profile to be activated when building the docs artifacts. --> <id>build-docs</id> <properties> diff --git a/wayang-distro/pom.xml b/wayang-distro/pom.xml deleted file mode 100644 index e9e2a7e..0000000 --- a/wayang-distro/pom.xml +++ /dev/null @@ -1,121 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - 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> - - <parent> - <artifactId>wayang</artifactId> - <groupId>org.apache.wayang</groupId> - <version>0.6.0-SNAPSHOT</version> - </parent> - - <artifactId>wayang-distro</artifactId> - <version>0.6.0-SNAPSHOT</version> - - <build> - <plugins> - <plugin> - <artifactId>maven-assembly-plugin</artifactId> - <configuration> - <descriptors> - <descriptors>src/assembly/distro.xml</descriptors> - </descriptors> - </configuration> - <executions> - <execution> - <id>distro-assembly</id> - <phase>package</phase> - <goals> - <goal>single</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - - <dependencies> - <dependency> - <groupId>org.apache.wayang</groupId> - <artifactId>wayang-core</artifactId> - <version>0.6.0-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.wayang</groupId> - <artifactId>wayang-basic</artifactId> - <version>0.6.0-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.wayang</groupId> - <artifactId>wayang-java</artifactId> - <version>0.6.0-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.wayang</groupId> - <artifactId>wayang-spark_${scala.mayor.version}</artifactId> - <version>0.6.0-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.wayang</groupId> - <artifactId>wayang-profiler_${scala.mayor.version}</artifactId> - <version>0.6.0-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.wayang</groupId> - <artifactId>wayang-jdbc-template</artifactId> - <version>0.6.0-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.wayang</groupId> - <artifactId>wayang-sqlite3</artifactId> - <version>0.6.0-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.wayang</groupId> - <artifactId>wayang-postgres</artifactId> - <version>0.6.0-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.wayang</groupId> - <artifactId>wayang-api-scala-java_${scala.mayor.version}</artifactId> - <version>0.6.0-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.wayang</groupId> - <artifactId>wayang-flink_${scala.mayor.version}</artifactId> - <version>0.6.0-SNAPSHOT</version> - </dependency> - </dependencies> - <profiles> - <profile> - <id>scala-11</id> - <dependencies> - <dependency> - <groupId>org.apache.wayang</groupId> - <artifactId>wayang-graphchi_2.11</artifactId> - <version>0.6.0-SNAPSHOT</version> - </dependency> - </dependencies> - </profile> - </profiles> - -</project> diff --git a/wayang-distro/src/assembly/distro.xml b/wayang-distro/src/assembly/distro.xml deleted file mode 100644 index e95aa04..0000000 --- a/wayang-distro/src/assembly/distro.xml +++ /dev/null @@ -1,30 +0,0 @@ -<!-- - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. See accompanying LICENSE file. ---> -<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd"> - - <id>distro</id> - <formats> - <format>dir</format> - </formats> - - <dependencySets> - <dependencySet> - <outputDirectory>/</outputDirectory> - <useProjectArtifact>false</useProjectArtifact> - <unpack>false</unpack> - <scope>runtime</scope> - </dependencySet> - </dependencySets> - -</assembly>
