Skip to content

Commit 73df349

Browse files
authored
Pre release 20.8
1 parent ab5a041 commit 73df349

89 files changed

Lines changed: 1162 additions & 2776 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
# code files
55
*.java text eol=lf
66

7+
# doc files
8+
*.md text eol=lf
9+
710
# test files
811
*.xml text eol=lf
912
*.json text eol=lf

Makefile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,18 @@ fix:
99

1010
.PHONY: format
1111
format: fix
12-
find $(SRC) -iname "*.java" -exec java -jar tools/google-java-format-1.8-all-deps.jar --aosp --replace {} \;
12+
find ./src -iname "*.java" | xargs java -jar tools/google-java-format-1.8-all-deps.jar --aosp --replace
13+
# Repeat for consistent formatting
14+
find ./src -iname "*.java" | xargs java -jar tools/google-java-format-1.8-all-deps.jar --aosp --replace
1315

1416
.PHONY: format_tests
1517
format_tests:
16-
find $(SRC)/test -iname "*.java" -exec java -jar tools/google-java-format-1.8-all-deps.jar --aosp --replace {} \;
18+
find $(SRC)/test -iname "*.java" | xargs java -jar tools/google-java-format-1.8-all-deps.jar --aosp --replace
1719

1820
.PHONY: test
1921
test:
2022
mvn -B package --file pom.xml
23+
24+
.PHONY: publish
25+
publish:
26+
mvn deploy

README.md

Lines changed: 110 additions & 130 deletions
Large diffs are not rendered by default.

docs/BarcodeApi.md

Lines changed: 227 additions & 386 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)