Skip to content

Commit

Permalink
resolves #358
Browse files Browse the repository at this point in the history
  • Loading branch information
markheger committed Nov 12, 2020
1 parent a366be2 commit 3e695e2
Show file tree
Hide file tree
Showing 26 changed files with 95 additions and 68 deletions.
16 changes: 8 additions & 8 deletions samples/FTPTester/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (C) 2019, International Business Machines Corporation
# All Rights Reserved

.PHONY: all distributed standalone clean clean-runtime-generated-files clean-all run
.PHONY: all distributed standalone clean clean-all run

STREAMS_INET_TOOLKIT ?=../../com.ibm.streamsx.inet:${STREAMS_INSTALL}/toolkits/com.ibm.streamsx.inet
ifeq ($(STREAMS_STUDIO_BUILDING), 1)
Expand All @@ -19,6 +19,9 @@ else
DATA_DIR = data
OUTPUT_DIR = output
TOOLKIT_PATH = $(STREAMS_INET_TOOLKIT)
ifdef STREAMS_BUILDSERVICE
TOOLKIT_PATH = ../toolkits:$(STREAMS_INSTALL)/toolkits
endif
endif

SPLC_FLAGS = -a
Expand All @@ -28,18 +31,15 @@ SPL_MAIN_COMPOSITE = Main
all: clean distributed

distributed:
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

standalone:
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

clean-all: clean clean-runtime-generated-files
clean-all: clean

clean:
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

clean-runtime-generated-files:
-rm -rf $(DATA_DIR)/*.txt
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

run: standalone
$(OUTPUT_DIR)/bin/standalone
4 changes: 2 additions & 2 deletions samples/FTPTester/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
feed the content of files from a ftp-server into a IBM Streams application. It can be used for
a quick test of an ftp server connection.
</info:description>
<info:version>1.0.0</info:version>
<info:version>1.0.1</info:version>
<info:requiredProductVersion>4.0.1.0</info:requiredProductVersion>
</info:identity>
<info:dependencies>
Expand All @@ -17,4 +17,4 @@
<common:version>2.0.0</common:version>
</info:toolkit>
</info:dependencies>
</info:toolkitInfoModel>
</info:toolkitInfoModel>
9 changes: 6 additions & 3 deletions samples/HTTPFunctions/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ else
DATA_DIR = data
OUTPUT_DIR = output
TOOLKIT_PATH = $(STREAMS_INET_TOOLKIT)
ifdef STREAMS_BUILDSERVICE
TOOLKIT_PATH = ../toolkits:$(STREAMS_INSTALL)/toolkits
endif
endif

SPLC_FLAGS = -a
Expand All @@ -28,10 +31,10 @@ SPL_MAIN_COMPOSITE = com.ibm.streamsx.inet.sample::GetPost
all: clean distributed

distributed:
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

standalone:
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

clean:
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
2 changes: 1 addition & 1 deletion samples/HTTPFunctions/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<info:identity>
<info:name>HTTPFunctions</info:name>
<info:description>Sample application for HTTPFunctions</info:description>
<info:version>1.0.0</info:version>
<info:version>1.0.1</info:version>
<info:requiredProductVersion>4.0.1.0</info:requiredProductVersion>
</info:identity>
<info:dependencies>
Expand Down
16 changes: 8 additions & 8 deletions samples/HTTPParallelRequestDemo/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (C) 2019, International Business Machines Corporation
# All Rights Reserved

.PHONY: all distributed standalone clean clean-runtime-generated-files clean-all run
.PHONY: all distributed standalone clean clean-all run

STREAMS_INET_TOOLKIT ?=../../com.ibm.streamsx.inet:${STREAMS_INSTALL}/toolkits/com.ibm.streamsx.inet
ifeq ($(STREAMS_STUDIO_BUILDING), 1)
Expand All @@ -19,6 +19,9 @@ else
DATA_DIR = data
OUTPUT_DIR = output
TOOLKIT_PATH = $(STREAMS_INET_TOOLKIT)
ifdef STREAMS_BUILDSERVICE
TOOLKIT_PATH = ../toolkits:$(STREAMS_INSTALL)/toolkits
endif
endif

SPLC_FLAGS = -a
Expand All @@ -28,18 +31,15 @@ SPL_MAIN_COMPOSITE = Main
all: clean distributed

distributed:
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

standalone:
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

clean-all: clean clean-runtime-generated-files
clean-all: clean

clean:
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

clean-runtime-generated-files:
-rm -rf $(DATA_DIR)/*.txt
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

run: standalone
$(OUTPUT_DIR)/bin/standalone
2 changes: 1 addition & 1 deletion samples/HTTPParallelRequestDemo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
This sample demonstrates the usage of composition of HTTPParallelRequest operator of the Internet Toolkit.
The HTTPParallelRequest issues HTTP requests in parallel asynchronously from the input stream
</info:description>
<info:version>1.0.0</info:version>
<info:version>1.0.1</info:version>
<info:requiredProductVersion>4.0.1.0</info:requiredProductVersion>
</info:identity>
<info:dependencies>
Expand Down
16 changes: 8 additions & 8 deletions samples/HTTPPostDemo/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (C) 2019, International Business Machines Corporation
# All Rights Reserved

.PHONY: all distributed standalone clean clean-runtime-generated-files clean-all run
.PHONY: all distributed standalone clean clean-all run

STREAMS_INET_TOOLKIT ?=../../com.ibm.streamsx.inet:${STREAMS_INSTALL}/toolkits/com.ibm.streamsx.inet
ifeq ($(STREAMS_STUDIO_BUILDING), 1)
Expand All @@ -19,6 +19,9 @@ else
DATA_DIR = data
OUTPUT_DIR = output
TOOLKIT_PATH = $(STREAMS_INET_TOOLKIT)
ifdef STREAMS_BUILDSERVICE
TOOLKIT_PATH = ../toolkits:$(STREAMS_INSTALL)/toolkits
endif
endif

SPLC_FLAGS = -a
Expand All @@ -28,18 +31,15 @@ SPL_MAIN_COMPOSITE = sample::Main
all: clean distributed

distributed:
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

standalone:
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

clean-all: clean clean-runtime-generated-files
clean-all: clean

clean:
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

clean-runtime-generated-files:
-rm -rf $(DATA_DIR)/*.txt
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

run: standalone
$(OUTPUT_DIR)/bin/standalone
4 changes: 2 additions & 2 deletions samples/HTTPPostDemo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<info:identity>
<info:name>HTTPPostDemo</info:name>
<info:description>Demonstrate the use of the httpPost operator</info:description>
<info:version>1.0.0</info:version>
<info:version>1.0.1</info:version>
<info:requiredProductVersion>4.2.1.0</info:requiredProductVersion>
</info:identity>
<info:dependencies>
Expand All @@ -13,4 +13,4 @@
<common:version>2.1.0</common:version>
</info:toolkit>
</info:dependencies>
</info:toolkitInfoModel>
</info:toolkitInfoModel>
16 changes: 8 additions & 8 deletions samples/HTTPRequestDemo/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (C) 2019, International Business Machines Corporation
# All Rights Reserved

.PHONY: all distributed standalone clean clean-runtime-generated-files clean-all run
.PHONY: all distributed standalone clean clean-all run

STREAMS_INET_TOOLKIT ?=../../com.ibm.streamsx.inet:${STREAMS_INSTALL}/toolkits/com.ibm.streamsx.inet
ifeq ($(STREAMS_STUDIO_BUILDING), 1)
Expand All @@ -19,6 +19,9 @@ else
DATA_DIR = data
OUTPUT_DIR = output
TOOLKIT_PATH = $(STREAMS_INET_TOOLKIT)
ifdef STREAMS_BUILDSERVICE
TOOLKIT_PATH = ../toolkits:$(STREAMS_INSTALL)/toolkits
endif
endif

SPLC_FLAGS = -a
Expand All @@ -28,18 +31,15 @@ SPL_MAIN_COMPOSITE = Main
all: clean distributed

distributed:
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

standalone:
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

clean-all: clean clean-runtime-generated-files
clean-all: clean

clean:
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

clean-runtime-generated-files:
-rm -rf $(DATA_DIR)/*.txt
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

run: standalone
$(OUTPUT_DIR)/bin/standalone
4 changes: 2 additions & 2 deletions samples/HTTPRequestDemo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<info:identity>
<info:name>HTTPRequestDemo</info:name>
<info:description> This sample demonstrates the use of the HTTPRequest operator</info:description>
<info:version>1.1.0</info:version>
<info:version>1.1.1</info:version>
<info:requiredProductVersion>4.2.1.0</info:requiredProductVersion>
</info:identity>
<info:dependencies>
Expand All @@ -13,4 +13,4 @@
<common:version>3.4.0</common:version>
</info:toolkit>
</info:dependencies>
</info:toolkitInfoModel>
</info:toolkitInfoModel>
9 changes: 6 additions & 3 deletions samples/HTTPStreamRead/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ else
DATA_DIR = data
OUTPUT_DIR = output
TOOLKIT_PATH = $(STREAMS_INET_TOOLKIT)
ifdef STREAMS_BUILDSERVICE
TOOLKIT_PATH = ../toolkits:$(STREAMS_INSTALL)/toolkits
endif
endif

SPLC_FLAGS = -a
Expand All @@ -28,10 +31,10 @@ SPL_MAIN_COMPOSITE = com.ibm.streamsx.inet.http.sample::HTTPStreamSample
all: clean distributed

distributed:
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

standalone:
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

clean:
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
2 changes: 1 addition & 1 deletion samples/HTTPStreamRead/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<info:identity>
<info:name>HttpStreamRead</info:name>
<info:description>Demonstrates how to use the HTTPGetStream operator</info:description>
<info:version>1.0.1</info:version>
<info:version>1.0.2</info:version>
<info:requiredProductVersion>4.0.1.0</info:requiredProductVersion>
</info:identity>
<info:dependencies>
Expand Down
9 changes: 6 additions & 3 deletions samples/InetSource/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ else
DATA_DIR = data
OUTPUT_DIR = output
TOOLKIT_PATH = $(STREAMS_INET_TOOLKIT)
ifdef STREAMS_BUILDSERVICE
TOOLKIT_PATH = ../toolkits:$(STREAMS_INSTALL)/toolkits
endif
endif

SPLC_FLAGS = -a
Expand All @@ -29,10 +32,10 @@ SPL_MAIN_COMPOSITE = com.ibm.streamsx.inet.sample::GetWeather
all: clean distributed

distributed:
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

standalone:
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

clean:
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
2 changes: 1 addition & 1 deletion samples/InetSource/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<info:identity>
<info:name>InetSourceSample</info:name>
<info:description>Sample demonstrating InetSource</info:description>
<info:version>1.0.0</info:version>
<info:version>1.0.1</info:version>
<info:requiredProductVersion>4.0.1.0</info:requiredProductVersion>
</info:identity>
<info:dependencies>
Expand Down
9 changes: 6 additions & 3 deletions samples/InetSourceDynamicURL/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ else
DATA_DIR = data
OUTPUT_DIR = output
TOOLKIT_PATH = $(STREAMS_INET_TOOLKIT)
ifdef STREAMS_BUILDSERVICE
TOOLKIT_PATH = ../toolkits:$(STREAMS_INSTALL)/toolkits
endif
endif

SPLC_FLAGS = -a
Expand All @@ -28,10 +31,10 @@ SPL_MAIN_COMPOSITE = com.ibm.streamsx.inet.sample::GetWeatherDynamic
all: clean distributed

distributed:
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

standalone:
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -T -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)

clean:
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --data-dir $(DATA_DIR) --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
$(SPLC) $(SPLC_FLAGS) -C -M $(SPL_MAIN_COMPOSITE) -t ${TOOLKIT_PATH} --output-dir $(OUTPUT_DIR) $(SPL_CMD_ARGS)
2 changes: 1 addition & 1 deletion samples/InetSourceDynamicURL/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<info:identity>
<info:name>InetSourceDynamicURL</info:name>
<info:description>Sample demonstrating InetSource with dynamic URL</info:description>
<info:version>1.0.0</info:version>
<info:version>1.0.1</info:version>
<info:requiredProductVersion>4.0.1.0</info:requiredProductVersion>
</info:identity>
<info:dependencies>
Expand Down
3 changes: 3 additions & 0 deletions samples/InetSourceOutputAttributes/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ else
DATA_DIR = data
OUTPUT_DIR = output
TOOLKIT_PATH = $(STREAMS_INET_TOOLKIT)
ifdef STREAMS_BUILDSERVICE
TOOLKIT_PATH = ../toolkits:$(STREAMS_INSTALL)/toolkits
endif
endif

SPLC_FLAGS = -a
Expand Down
2 changes: 1 addition & 1 deletion samples/InetSourceOutputAttributes/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<info:identity>
<info:name>InetSourceOutputAttributes</info:name>
<info:description>Sample demonstrating InetSource with explicit output attribute assignments</info:description>
<info:version>1.0.0</info:version>
<info:version>1.0.1</info:version>
<info:requiredProductVersion>4.0.1.0</info:requiredProductVersion>
</info:identity>
<info:dependencies>
Expand Down
3 changes: 3 additions & 0 deletions samples/PutFile/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ else
DATA_DIR = $(abspath ./data)
OUTPUT_DIR = output
TOOLKIT_PATH = $(STREAMS_INET_TOOLKIT)
ifdef STREAMS_BUILDSERVICE
TOOLKIT_PATH = ../toolkits:$(STREAMS_INSTALL)/toolkits
endif
endif

SPLC_FLAGS = -a
Expand Down
2 changes: 1 addition & 1 deletion samples/PutFile/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<info:identity>
<info:name>FTP PutFile sample</info:name>
<info:description>This sample demonstrates the use of the FTPPutFile operator</info:description>
<info:version>1.0.0</info:version>
<info:version>1.0.1</info:version>
<info:requiredProductVersion>4.0.1.0</info:requiredProductVersion>
</info:identity>
<info:dependencies>
Expand Down
Loading

0 comments on commit 3e695e2

Please sign in to comment.