Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,26 @@
*.war
*.nar
*.ear
*.zip
# comment out .zip because of javadocs
#*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*

.history

# Maven build artifact directory
target/*

# IntelliJ project directory info
.idea/*
*.iml

# Visual Studio code
.vscode/*
!.vscode/cspell.json
*.code-workspace
.history

3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "sz-sdk-proto"]
path = sz-sdk-proto
url = https://github.com/senzing-garage/sz-sdk-proto.git
30 changes: 30 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -1,4 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>sz-sdk-java-grpc</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
<filteredResources>
<filter>
<id>1747721989441</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
84 changes: 84 additions & 0 deletions .vscode/cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
{
// Version of the setting file. Always 0.2
"version": "0.2",
// language - current active spelling language
"language": "en",
// words - list of words to be always considered correct
"words": [
"BUILDOUT",
"Bandley",
"CCLA",
"CFCALL",
"CFRTN",
"CFUNC",
"CODEOWNER",
"CONFIGCHKSUM",
"CONFIGFILE",
"CONFIGMGR",
"DFCALL",
"DFUNC",
"DISQUAL",
"DONT",
"DSRC",
"DSRCID",
"DYLD",
"Disqualifier",
"Dskip",
"Dsrcs",
"EFBOM",
"EFCALL",
"EFEATS",
"EFUNC",
"ERFRAG",
"ERRULE",
"FBOVR",
"FCLASS",
"FELEMS",
"GNRNP",
"GPLAN",
"HMAC",
"ICLA",
"LIBFEAT",
"Osmond",
"PARAMSTORE",
"PKCS",
"RCLASS",
"RECOGNISED",
"RTYPE",
"Retryable",
"SCORESET",
"SFCALL",
"SFUNC",
"SOPIN",
"Sepulveda",
"SZCONFIGMGR",
"SZDIAGNOSTIC",
"SZHASHER",
"SZSS",
"USERPROFILE",
"UTYPE",
"Uninitializes",
"WATCHLIST",
"XLITERATOR",
"ctxt",
"dylib",
"elete",
"felem",
"ftype",
"hange",
"initialise",
"itali",
"javadocs",
"locklist",
"reinit",
"stackoverflow",
"unresolve",
"Senzing"
],
"ignorePaths": [
"CHANGELOG.md",
"Makefile",
"pom.xml",
"**/test/**"
]
}
17 changes: 17 additions & 0 deletions checkstyle-suppressions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0"?>

<!DOCTYPE suppressions PUBLIC
"-//Puppy Crawl//DTD Suppressions 1.0//EN"
"http://www.puppycrawl.com/dtds/suppressions_1_0.dtd">

<suppressions>
<suppress checks="LeftCurly" files="."/>
<suppress checks="LineLength" files="."/>
<suppress checks="FinalParameters" files="."/>
<suppress checks="RegexpSingleline" files="."/>
<suppress checks="AvoidStarImport" files="."/>
<suppress checks="HiddenField" files="."/>
<suppress checks="ParameterNumber" files="."/>
<suppress checks="MagicNumber" files="."/>
<suppress checks="MethodLength" files="src/main/java/com/senzing/sdk/core/SzExceptionMapper.java"/>
</suppressions>
Loading