Skip to content

Commit

Permalink
Liberada versão 3.0.5 e iniciado desenvolvimento da 3.0.6!
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Fincatto committed May 2, 2019
1 parent adc798e commit 2306ed9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Nota Fiscal Eletrônica
Comunicador de nota fiscal e nota fiscal do consumidor da [fazenda](http://www.nfe.fazenda.gov.br/portal/principal.aspx).<br/>
[![Build Status](https://travis-ci.org/wmixvideo/nfe.svg?branch=master)](http://travis-ci.org/#!/wmixvideo/nfe)
[![Coverage Status](https://coveralls.io/repos/wmixvideo/nfe/badge.svg?branch=master&service=github)](https://coveralls.io/github/wmixvideo/nfe?branch=master)
[![Maven Central](https://img.shields.io/badge/maven%20central-3.0.4-blue.svg)](http://search.maven.org/#artifactdetails|com.github.wmixvideo|nfe|3.0.4|)
[![Maven Central](https://img.shields.io/badge/maven%20central-3.0.5-blue.svg)](http://search.maven.org/#artifactdetails|com.github.wmixvideo|nfe|3.0.5|)
[![Apache 2.0 License](https://img.shields.io/badge/license-apache%202.0-green.svg) ](https://github.com/wmixvideo/nfe/blob/master/LICENSE)

## Atenção
Expand All @@ -24,7 +24,7 @@ Caso não possua conhecimento técnico para criar notas fiscais, um profissional
<dependency>
<groupId>com.github.wmixvideo</groupId>
<artifactId>nfe</artifactId>
<version>3.0.4</version>
<version>3.0.5</version>
</dependency>
```
### Fazendo o clone do projeto (última versão em desenvolvimento)
Expand All @@ -46,10 +46,10 @@ Caso não possua conhecimento técnico para criar notas fiscais, um profissional
<dependency>
<groupId>com.github.wmixvideo</groupId>
<artifactId>nfe</artifactId>
<version>3.0.4</version>
<version>3.0.5</version>
</dependency>
```
- Onde ```<version>3.0.4</version>``` é a versão atual do projeto definido no arquivo [pom.xml](https://github.com/wmixvideo/nfe/blob/master/pom.xml)
- Onde ```<version>3.0.5</version>``` é a versão atual do projeto definido no arquivo [pom.xml](https://github.com/wmixvideo/nfe/blob/master/pom.xml)

## Como usar
Basicamente você precisará de uma implementação de **NFeConfig** (exemplificado abaixo), com informações de tipo de emissão, certificados
Expand Down Expand Up @@ -114,8 +114,8 @@ public class NFeConfigTeste extends NFeConfig {
KeyStore keyStoreCert = KeyStore.getInstance("Windows-MY", "SunMSCAPI");
keyStoreCert.load(null, null);
Enumeration<String> aliasEnum = keyStoreCert.aliases();

```

Após isso é necessário algum método para o usuário escolher entre um destes alias,
talvez por meio de um JOptionPane(<java7)
ou de um ChoiceDialog<String>(>=Java8), e então fazer o load com a respectivo alias escolhido e sua senha.
Expand Down
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.github.wmixvideo</groupId>
<artifactId>nfe</artifactId>
<packaging>jar</packaging>
<version>3.0.5-SNAPSHOT</version>
<version>3.0.6-SNAPSHOT</version>
<name>nfe</name>
<description>Biblioteca de comunicacao de nota fiscal eletronica brasileira</description>
<url>https://github.com/wmixvideo/nfe</url>
Expand Down Expand Up @@ -248,10 +248,11 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<version>3.1.0</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<failOnError>false</failOnError>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
Expand All @@ -265,7 +266,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M2</version>
<version>3.0.0-M3</version>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit 2306ed9

Please sign in to comment.