Skip to content

Commit

Permalink
STREAMPIPES-2: Rename project namespace to Apache coordinates
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikriemer committed Dec 11, 2019
1 parent 3216464 commit 9e5cafd
Show file tree
Hide file tree
Showing 1,239 changed files with 5,362 additions and 5,394 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -18,7 +18,7 @@

[![Travis Badge](https://travis-ci.org/apache/incubator-streampipes.svg?branch=dev)](https://travis-ci.org/apache/incubator-streampipes.svg?branch=dev)
[![Docker pulls](https://img.shields.io/docker/pulls/streampipes/backend.svg)](https://hub.docker.com/r/streampipes/backend/)
[![Maven central](https://img.shields.io/maven-central/v/org.streampipes/streampipes-backend.svg)](https://img.shields.io/maven-central/v/org.streampipes/streampipes-backend.svg)
[![Maven central](https://img.shields.io/maven-central/v/org.apache.streampipes/streampipes-backend.svg)](https://img.shields.io/maven-central/v/org.apache.streampipes/streampipes-backend.svg)
[![License](https://img.shields.io/github/license/apache/incubator-streampipes.svg)](http://www.apache.org/licenses/LICENSE-2.0)
[![Last commit](https://img.shields.io/github/last-commit/apache/incubator-streampipes.svg)]()
[![Twitter](https://img.shields.io/twitter/follow/StreamPipes.svg?label=Follow&style=social)](https://twitter.com/StreamPipes)
Expand Down
Expand Up @@ -21,7 +21,7 @@
### Usage

mvn archetype:generate \
-DarchetypeGroupId=org.streampipes \
-DarchetypeGroupId=org.apache.streampipes \
-DarchetypeArtifactId=streampipes-archetype-pe-processors-flink \
-DarchetypeVersion=0.60.2-SNAPSHOT \
-DgroupId=my.test.groupId \
Expand Down
Expand Up @@ -20,7 +20,7 @@
<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>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-parent</artifactId>
<version>0.65.1-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
Expand Down
Expand Up @@ -12,7 +12,7 @@

<dependencies>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-container-standalone</artifactId>
<version>${sp.version}</version>
<exclusions>
Expand All @@ -27,7 +27,7 @@
</exclusions>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-commons</artifactId>
<version>${sp.version}</version>
<exclusions>
Expand All @@ -42,7 +42,7 @@
</exclusions>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-wrapper-flink</artifactId>
<version>${sp.version}</version>
<exclusions>
Expand All @@ -62,7 +62,7 @@
<version>1.9.2</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-sdk</artifactId>
<version>${sp.version}</version>
</dependency>
Expand All @@ -77,37 +77,37 @@
<version>1.7.24</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-config</artifactId>
<version>${sp.version}</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-dataformat-json</artifactId>
<version>${sp.version}</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-dataformat-cbor</artifactId>
<version>${sp.version}</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-dataformat-smile</artifactId>
<version>${sp.version}</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-dataformat-fst</artifactId>
<version>${sp.version}</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-messaging-jms</artifactId>
<version>${sp.version}</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-messaging-kafka</artifactId>
<version>${sp.version}</version>
</dependency>
Expand Down
Expand Up @@ -3,8 +3,8 @@
#set( $symbol_escape = '\' )
package ${package}.config;

import org.streampipes.config.SpConfig;
import org.streampipes.container.model.PeConfig;
import org.apache.streampipes.config.SpConfig;
import org.apache.streampipes.container.model.PeConfig;

public enum Config implements PeConfig {

Expand Down
Expand Up @@ -3,18 +3,18 @@
#set( $symbol_escape = '\' )
package ${package}.main;

import org.streampipes.container.init.DeclarersSingleton;
import org.streampipes.container.standalone.init.StandaloneModelSubmitter;
import org.apache.streampipes.container.init.DeclarersSingleton;
import org.apache.streampipes.container.standalone.init.StandaloneModelSubmitter;

import ${package}.config.Config;
import ${package}.pe.processor.${packageName}.${classNamePrefix}Controller;

import org.streampipes.dataformat.cbor.CborDataFormatFactory;
import org.streampipes.dataformat.fst.FstDataFormatFactory;
import org.streampipes.dataformat.json.JsonDataFormatFactory;
import org.streampipes.dataformat.smile.SmileDataFormatFactory;
import org.streampipes.messaging.jms.SpJmsProtocolFactory;
import org.streampipes.messaging.kafka.SpKafkaProtocolFactory;
import org.apache.streampipes.dataformat.cbor.CborDataFormatFactory;
import org.apache.streampipes.dataformat.fst.FstDataFormatFactory;
import org.apache.streampipes.dataformat.json.JsonDataFormatFactory;
import org.apache.streampipes.dataformat.smile.SmileDataFormatFactory;
import org.apache.streampipes.messaging.jms.SpJmsProtocolFactory;
import org.apache.streampipes.messaging.kafka.SpKafkaProtocolFactory;

public class Init extends StandaloneModelSubmitter {

Expand Down
Expand Up @@ -7,7 +7,7 @@
import org.apache.flink.api.common.functions.FlatMapFunction;
import org.apache.flink.util.Collector;

import org.streampipes.model.runtime.Event;
import org.apache.streampipes.model.runtime.Event;

public class ${classNamePrefix} implements FlatMapFunction<Event, Event> {

Expand Down
Expand Up @@ -5,21 +5,21 @@

import ${package}.config.Config;

import org.streampipes.model.DataProcessorType;
import org.streampipes.model.graph.DataProcessorDescription;
import org.streampipes.model.graph.DataProcessorInvocation;
import org.streampipes.sdk.builder.ProcessingElementBuilder;
import org.streampipes.sdk.builder.StreamRequirementsBuilder;
import org.streampipes.sdk.extractor.ProcessingElementParameterExtractor;
import org.streampipes.sdk.helpers.EpRequirements;
import org.streampipes.sdk.helpers.Labels;
import org.streampipes.sdk.helpers.OutputStrategies;
import org.streampipes.sdk.helpers.SupportedFormats;
import org.streampipes.sdk.helpers.SupportedProtocols;
import org.streampipes.sdk.helpers.*;
import org.streampipes.sdk.utils.Assets;
import org.streampipes.wrapper.flink.FlinkDataProcessorDeclarer;
import org.streampipes.wrapper.flink.FlinkDataProcessorRuntime;
import org.apache.streampipes.model.DataProcessorType;
import org.apache.streampipes.model.graph.DataProcessorDescription;
import org.apache.streampipes.model.graph.DataProcessorInvocation;
import org.apache.streampipes.sdk.builder.ProcessingElementBuilder;
import org.apache.streampipes.sdk.builder.StreamRequirementsBuilder;
import org.apache.streampipes.sdk.extractor.ProcessingElementParameterExtractor;
import org.apache.streampipes.sdk.helpers.EpRequirements;
import org.apache.streampipes.sdk.helpers.Labels;
import org.apache.streampipes.sdk.helpers.OutputStrategies;
import org.apache.streampipes.sdk.helpers.SupportedFormats;
import org.apache.streampipes.sdk.helpers.SupportedProtocols;
import org.apache.streampipes.sdk.helpers.*;
import org.apache.streampipes.sdk.utils.Assets;
import org.apache.streampipes.wrapper.flink.FlinkDataProcessorDeclarer;
import org.apache.streampipes.wrapper.flink.FlinkDataProcessorRuntime;

public class ${classNamePrefix}Controller extends
FlinkDataProcessorDeclarer<${classNamePrefix}Parameters> {
Expand Down
Expand Up @@ -3,8 +3,8 @@
#set( $symbol_escape = '\' )
package ${package}.pe.processor.${packageName};

import org.streampipes.model.graph.DataProcessorInvocation;
import org.streampipes.wrapper.params.binding.EventProcessorBindingParams;
import org.apache.streampipes.model.graph.DataProcessorInvocation;
import org.apache.streampipes.wrapper.params.binding.EventProcessorBindingParams;

public class ${classNamePrefix}Parameters extends EventProcessorBindingParams {

Expand Down
Expand Up @@ -6,9 +6,9 @@
import ${package}.config.Config;

import org.apache.flink.streaming.api.datastream.DataStream;
import org.streampipes.model.runtime.Event;
import org.streampipes.wrapper.flink.FlinkDataProcessorRuntime;
import org.streampipes.wrapper.flink.FlinkDeploymentConfig;
import org.apache.streampipes.model.runtime.Event;
import org.apache.streampipes.wrapper.flink.FlinkDataProcessorRuntime;
import org.apache.streampipes.wrapper.flink.FlinkDeploymentConfig;

import java.io.Serializable;

Expand Down
Expand Up @@ -17,7 +17,7 @@
#

#Tue Nov 21 10:33:48 CET 2017
package=org.streampipes.test
package=org.apache.streampipes.test
version=0.1-SNAPSHOT
groupId=test-pe
artifactId=basic
Expand Down
Expand Up @@ -21,7 +21,7 @@
### Usage

mvn archetype:generate \
-DarchetypeGroupId=org.streampipes \
-DarchetypeGroupId=org.apache.streampipes \
-DarchetypeArtifactId=streampipes-archetype-pe-processors-jvm \
-DarchetypeVersion=0.60.2-SNAPSHOT \
-DgroupId=my.groupId \
Expand Down
2 changes: 1 addition & 1 deletion archetypes/streampipes-archetype-pe-processors-jvm/pom.xml
Expand Up @@ -20,7 +20,7 @@
<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>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-parent</artifactId>
<version>0.65.1-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
Expand Down
Expand Up @@ -12,52 +12,52 @@

<dependencies>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-wrapper-standalone</artifactId>
<version>${sp.version}</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-sdk</artifactId>
<version>${sp.version}</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-container-standalone</artifactId>
<version>${sp.version}</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-config</artifactId>
<version>${sp.version}</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-dataformat-json</artifactId>
<version>${sp.version}</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-dataformat-cbor</artifactId>
<version>${sp.version}</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-dataformat-smile</artifactId>
<version>${sp.version}</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-dataformat-fst</artifactId>
<version>${sp.version}</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-messaging-jms</artifactId>
<version>${sp.version}</version>
</dependency>
<dependency>
<groupId>org.streampipes</groupId>
<groupId>org.apache.streampipes</groupId>
<artifactId>streampipes-messaging-kafka</artifactId>
<version>${sp.version}</version>
</dependency>
Expand Down
Expand Up @@ -3,8 +3,8 @@
#set( $symbol_escape = '\' )
package ${package}.config;

import org.streampipes.config.SpConfig;
import org.streampipes.container.model.PeConfig;
import org.apache.streampipes.config.SpConfig;
import org.apache.streampipes.container.model.PeConfig;

import static ${package}.config.ConfigKeys.*;

Expand Down
Expand Up @@ -3,14 +3,14 @@
#set( $symbol_escape = '\' )
package ${package}.main;

import org.streampipes.container.init.DeclarersSingleton;
import org.streampipes.container.standalone.init.StandaloneModelSubmitter;
import org.streampipes.dataformat.cbor.CborDataFormatFactory;
import org.streampipes.dataformat.fst.FstDataFormatFactory;
import org.streampipes.dataformat.json.JsonDataFormatFactory;
import org.streampipes.dataformat.smile.SmileDataFormatFactory;
import org.streampipes.messaging.jms.SpJmsProtocolFactory;
import org.streampipes.messaging.kafka.SpKafkaProtocolFactory;
import org.apache.streampipes.container.init.DeclarersSingleton;
import org.apache.streampipes.container.standalone.init.StandaloneModelSubmitter;
import org.apache.streampipes.dataformat.cbor.CborDataFormatFactory;
import org.apache.streampipes.dataformat.fst.FstDataFormatFactory;
import org.apache.streampipes.dataformat.json.JsonDataFormatFactory;
import org.apache.streampipes.dataformat.smile.SmileDataFormatFactory;
import org.apache.streampipes.messaging.jms.SpJmsProtocolFactory;
import org.apache.streampipes.messaging.kafka.SpKafkaProtocolFactory;

import ${package}.config.Config;
import ${package}.pe.processor.${packageName}.${classNamePrefix}Controller;
Expand Down
Expand Up @@ -4,10 +4,10 @@

package ${package}.pe.processor.${packageName};

import org.streampipes.model.runtime.Event;
import org.streampipes.wrapper.context.EventProcessorRuntimeContext;
import org.streampipes.wrapper.routing.SpOutputCollector;
import org.streampipes.wrapper.runtime.EventProcessor;
import org.apache.streampipes.model.runtime.Event;
import org.apache.streampipes.wrapper.context.EventProcessorRuntimeContext;
import org.apache.streampipes.wrapper.routing.SpOutputCollector;
import org.apache.streampipes.wrapper.runtime.EventProcessor;

import org.slf4j.Logger;

Expand Down
Expand Up @@ -3,21 +3,21 @@
#set( $symbol_escape = '\' )
package ${package}.pe.processor.${packageName};

import org.streampipes.model.DataProcessorType;
import org.streampipes.model.graph.DataProcessorDescription;
import org.streampipes.model.graph.DataProcessorInvocation;
import org.streampipes.sdk.builder.ProcessingElementBuilder;
import org.streampipes.sdk.builder.StreamRequirementsBuilder;
import org.streampipes.sdk.extractor.ProcessingElementParameterExtractor;
import org.streampipes.sdk.helpers.EpRequirements;
import org.streampipes.sdk.helpers.Labels;
import org.streampipes.sdk.helpers.OutputStrategies;
import org.streampipes.sdk.helpers.SupportedFormats;
import org.streampipes.sdk.helpers.SupportedProtocols;
import org.streampipes.sdk.helpers.*;
import org.streampipes.sdk.utils.Assets;
import org.streampipes.wrapper.standalone.ConfiguredEventProcessor;
import org.streampipes.wrapper.standalone.declarer.StandaloneEventProcessingDeclarer;
import org.apache.streampipes.model.DataProcessorType;
import org.apache.streampipes.model.graph.DataProcessorDescription;
import org.apache.streampipes.model.graph.DataProcessorInvocation;
import org.apache.streampipes.sdk.builder.ProcessingElementBuilder;
import org.apache.streampipes.sdk.builder.StreamRequirementsBuilder;
import org.apache.streampipes.sdk.extractor.ProcessingElementParameterExtractor;
import org.apache.streampipes.sdk.helpers.EpRequirements;
import org.apache.streampipes.sdk.helpers.Labels;
import org.apache.streampipes.sdk.helpers.OutputStrategies;
import org.apache.streampipes.sdk.helpers.SupportedFormats;
import org.apache.streampipes.sdk.helpers.SupportedProtocols;
import org.apache.streampipes.sdk.helpers.*;
import org.apache.streampipes.sdk.utils.Assets;
import org.apache.streampipes.wrapper.standalone.ConfiguredEventProcessor;
import org.apache.streampipes.wrapper.standalone.declarer.StandaloneEventProcessingDeclarer;

public class ${classNamePrefix}Controller extends StandaloneEventProcessingDeclarer<${classNamePrefix}Parameters> {

Expand Down

0 comments on commit 9e5cafd

Please sign in to comment.