Skip to content

Commit 7631f2f

Browse files
committed
fix(plugin): fix assembly configuration
1 parent cbf6a20 commit 7631f2f

File tree

3 files changed

+10
-14
lines changed

3 files changed

+10
-14
lines changed

README.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Connect File Pulse (BETA)
1+
## Connect File Pulse
22

33
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/streamthoughts/kafka-connect-file-pulse/blob/master/LICENSE)
44
[![CircleCI](https://circleci.com/gh/streamthoughts/kafka-connect-file-pulse.svg?style=svg)](https://circleci.com/gh/streamthoughts/kafka-connect-file-pulse)
@@ -7,11 +7,11 @@ Connect File Pulse is a multi-purpose [Kafka Connect](http://kafka.apache.org/do
77

88
## Motivation
99

10-
Lot of enterprises rely on files to export/import data between their systems either in near real time or daily.
10+
A lot of enterprises rely on files to export/import data between their systems either in near real time or daily.
1111
Files can be in different textual formats such as CSV, XML, JSON and so one.
1212
A common use case is to decouple those systems by streaming those files into Kafka.
1313

14-
Connect File Pulse attends to be a simple solution to deal with those kind of files.
14+
Connect File Pulse attends to be a simple solution to deal with those kind of files.
1515

1616
Connect File Pulse is largely inspired from functionality provided by both Elasticsearch and Logstash.
1717

@@ -25,6 +25,9 @@ Connect File Pulse is largely inspired from functionality provided by both Elast
2525
* Plugeable strategies for cleaning completed files
2626
* At-least-once guarantee
2727

28+
## Documentation
29+
30+
If you want to read about using Connect File Pulse, the documentation can be found on [GitHub Page](https://streamthoughts.github.io/kafka-connect-file-pulse/)
2831

2932
## Getting Started
3033

@@ -52,9 +55,6 @@ Connector will be package into an archive file compatible with [confluent-hub cl
5255
./connect-file-pulse-plugin/target/components/packages/streamthoughts-kafka-connect-file-pulse-plugin-<FILEPULSE_VERSION>.zip
5356
```
5457

55-
#### Install Connector Manually
56-
57-
5858
## Demonstrations
5959

6060
### Start Docker Environment
@@ -165,10 +165,6 @@ docker logs --tail="all" -f connect | grep "Orphan task detected"
165165
docker exec -it connect kafka-avro-console-consumer --topic connect-file-pulse-quickstart-csv --from-beginning --bootstrap-server broker:29092 --property schema.registry.url=http://schema-registry:8081
166166
```
167167

168-
## Documentation
169-
170-
If you want to read about using Connect File Pulse, the documentation can be found on [GitHub Page](https://streamthoughts.github.io/kafka-connect-file-pulse/)
171-
172168
## Contributions
173169

174170
Any feedback, bug reports and PRs are greatly appreciated! See our [guideline](./CONTRIBUTING.md)
@@ -179,4 +175,4 @@ Licensed to the Apache Software Foundation (ASF) under one or more contributor l
179175

180176
[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
181177

182-
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
178+
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

connect-file-pulse-plugin/src/assembly/package.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<includeBaseDirectory>false</includeBaseDirectory>
99
<fileSets>
1010
<fileSet>
11-
<directory>${project.basedir}</directory>
11+
<directory>${project.basedir}/../</directory>
1212
<outputDirectory>share/doc/${project.artifactId}/</outputDirectory>
1313
<includes>
1414
<include>README*</include>
@@ -17,7 +17,7 @@
1717
</includes>
1818
</fileSet>
1919
<fileSet>
20-
<directory>${project.basedir}/config</directory>
20+
<directory>${project.basedir}/../config</directory>
2121
<outputDirectory>etc/${project.artifactId}</outputDirectory>
2222
<includes>
2323
<include>*</include>

connect-file-pulse-plugin/src/assembly/standalone.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<includeBaseDirectory>false</includeBaseDirectory>
1010
<fileSets>
1111
<fileSet>
12-
<directory>${project.basedir}</directory>
12+
<directory>${project.basedir}/../</directory>
1313
<outputDirectory>/</outputDirectory>
1414
<includes>
1515
<include>README*</include>

0 commit comments

Comments
 (0)