Skip to content

Commit fce70c7

Browse files
authored
Merge pull request #2 from data-integrations/develop
ServiceNow plugin
2 parents 2e8c65f + b6f91ae commit fce70c7

32 files changed

+4247
-1
lines changed

.gitignore

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
*.class
2+
.*.swp
3+
.beamer
4+
# Package Files #
5+
*.jar
6+
*.war
7+
*.ear
8+
*.versionsBackup
9+
10+
# Intellij Files & Dir #
11+
*.iml
12+
*.ipr
13+
*.iws
14+
atlassian-ide-plugin.xml
15+
out/
16+
.DS_Store
17+
./lib/
18+
.idea
19+
20+
# Gradle Files & Dir #
21+
build/
22+
.gradle/
23+
.stickyStorage
24+
.build/
25+
target/
26+
27+
# Node log
28+
npm-*.log
29+
logs/
30+
31+
# Singlenode and test data files.
32+
/templates/
33+
/data/
34+
/data-fabric-tests/data/
35+
36+
# ANTLR4
37+
/core/gen
38+
*.tokens
39+
DirectivesLexer.java
40+
DirectivesParser.java
41+
DirectivesBaseListener.java
42+
DirectivesBaseVisitor.java
43+
DirectivesListener.java
44+
DirectivesVisitor.java
45+
46+
# generated by docs build
47+
*.py
48+
49+
# Remove release.properties
50+
release.properties
51+
52+
# Remove dev directory.
53+
dev

README.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,39 @@
1-
# servicenow-plugins
1+
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
2+
3+
# Overview
4+
5+
Contains CDAP pipeline plugins for ServiceNow. Following plugins are available in this repository.
6+
7+
* [ServiceNow Batch Source](docs/ServiceNow-batchsource.md)
8+
9+
# Contact
10+
11+
## Mailing Lists
12+
13+
CDAP User Group and Development Discussions:
14+
15+
* [[email protected]](https://groups.google.com/d/forum/cdap-user)
16+
17+
The *cdap-user* mailing list is primarily for users using the product to develop
18+
applications or building plugins for applications. You can expect questions from
19+
users, release announcements, and any other discussions that we think will be helpful
20+
to the users.
21+
22+
# License and Trademarks
23+
24+
Copyright © 2020 Cask Data, Inc.
25+
26+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
27+
in compliance with the License. You may obtain a copy of the License at
28+
29+
http://www.apache.org/licenses/LICENSE-2.0
30+
31+
Unless required by applicable law or agreed to in writing, software distributed under the
32+
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
33+
either express or implied. See the License for the specific language governing permissions
34+
and limitations under the License.
35+
36+
Cask is a trademark of Cask Data, Inc. All rights reserved.
37+
38+
Apache, Apache HBase, and HBase are trademarks of The Apache Software Foundation. Used with
39+
permission. No endorsement by The Apache Software Foundation is implied by the use of these marks.

0 commit comments

Comments
 (0)