Skip to content

Commit be8db81

Browse files
Merge remote-tracking branch 'origin/master'
2 parents 2adde8b + 45e82c5 commit be8db81

Some content is hidden

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

45 files changed

+2328
-34
lines changed

.github/FUNDING.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# These are supported funding model platforms
2+
3+
github: Samuel-Oliveira
4+

.github/workflows/docs.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
name: Publish docs via GitHub Pages
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
build:
11+
name: Deploy docs
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout main
15+
uses: actions/checkout@v2
16+
17+
- name: Deploy docs
18+
uses: mhausenblas/mkdocs-deploy-gh-pages@master
19+
# Or use mhausenblas/mkdocs-deploy-gh-pages@nomaterial to build without the mkdocs-material theme
20+
env:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
CONFIG_FILE: docs/mkdocs.yml
23+
EXTRA_PACKAGES: build-base
24+
REQUIREMENTS: docs/requirements.txt

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target/

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Biblioteca Java para consumo do WebService de NFe/NFCe
33

44
## Dúvidas, Sugestões ou Consultoria
5-
Entre no Discord do Projeto: https://discord.gg/ZXpqnaV
5+
[![Java Brasil](https://discordapp.com/api/guilds/519583346066587676/widget.png?style=banner2)](https://discord.gg/ZXpqnaV)
66

77
## Gostou do Projeto? Dê sua colaboração pelo Pix: 01713390108 <img src="https://swconsultoria.com.br/pix.png" width="200">
88

@@ -52,11 +52,11 @@ ________________________________________________________________________________
5252

5353
[//]: # (- Alterado URL QrCode NFCe MG)
5454

55-
[//]: # (- Atualizado Servidro DFe Homologação)
55+
[//]: # (- Atualizado Servidor DFe Homologação)
5656

5757
[//]: # (- Adicionado Compatibilidade com Java 14+)
5858

59-
[//]: # (- Adicionado Envento Ator Interessado)
59+
[//]: # (- Adicionado Evento Ator Interessado)
6060

6161
[//]: # (- Corrigido erro de Logs)
6262

@@ -102,9 +102,9 @@ ________________________________________________________________________________
102102
- Implementado NT 2021.004 1.20
103103
- Corrigido Consulta Cadastro MS
104104
- Alterado URL QrCode NFCe MG
105-
- Atualizado Servidro DFe Homologação
105+
- Atualizado Servidor DFe Homologação
106106
- Adicionado Compatibilidade com Java 14+
107-
- Adicionado Envento Ator Interessado
107+
- Adicionado Evento Ator Interessado
108108
- Corrigido erro de Logs
109109
- Adicionado Melhorias JaxB
110110

docs/.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/.idea/dbnavigator.xml

Lines changed: 461 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/.idea/docs.iml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/Makefile

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
.PHONY: docs
2+
3+
default: install
4+
5+
all: install build
6+
7+
8+
h help:
9+
@grep '^[a-z]' Makefile
10+
11+
12+
install:
13+
pip install pip --upgrade
14+
pip install -r requirements.txt
15+
16+
upgrade:
17+
pip install pip --upgrade
18+
pip install -r requirements.txt --upgrade
19+
20+
21+
s serve:
22+
mkdocs serve --strict
23+
24+
25+
b build:
26+
mkdocs build --strict
27+
28+
d deploy:
29+
mkdocs gh-deploy --strict --force

0 commit comments

Comments
 (0)