|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>br.com.swconsultoria</groupId> |
5 | 5 | <artifactId>java-nfe</artifactId> |
6 | | - <version>4.00.24-${versao}-SNAPSHOT</version> |
| 6 | + <version>4.00.32-${versao}-SNAPSHOT</version> |
7 | 7 | <name>Java_NFe</name> |
8 | 8 | <description>Api java para consumo do webService de nota fiscal eletronica</description> |
9 | 9 | <url>https://github.com/Samuel-Oliveira/Java_NFe</url> |
|
48 | 48 | </developer> |
49 | 49 | </developers> |
50 | 50 |
|
| 51 | + <profiles> |
| 52 | + <profile> |
| 53 | + <id>assembly</id> |
| 54 | + <build> |
| 55 | + <plugins> |
| 56 | + <plugin> |
| 57 | + <groupId>org.apache.maven.plugins</groupId> |
| 58 | + <artifactId>maven-assembly-plugin</artifactId> |
| 59 | + <version>3.1.1</version> |
| 60 | + <configuration> |
| 61 | + <descriptorRefs> |
| 62 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 63 | + </descriptorRefs> |
| 64 | + <appendAssemblyId>false</appendAssemblyId> |
| 65 | + </configuration> |
| 66 | + <executions> |
| 67 | + <execution> |
| 68 | + <id>make-assembly</id> |
| 69 | + <phase>package</phase> |
| 70 | + <goals> |
| 71 | + <goal>single</goal> |
| 72 | + </goals> |
| 73 | + </execution> |
| 74 | + </executions> |
| 75 | + </plugin> |
| 76 | + </plugins> |
| 77 | + </build> |
| 78 | + </profile> |
| 79 | + </profiles> |
| 80 | + |
51 | 81 | <dependencies> |
52 | 82 | <!-- Certificado Utils --> |
53 | 83 | <dependency> |
54 | 84 | <groupId>br.com.swconsultoria</groupId> |
55 | 85 | <artifactId>java_certificado</artifactId> |
56 | | - <version>2.11-${versao}-SNAPSHOT</version> |
| 86 | + <version>3.4</version> |
57 | 87 | </dependency> |
58 | 88 | <!-- Ini4J --> |
59 | 89 | <dependency> |
|
165 | 195 | <plugin> |
166 | 196 | <groupId>org.sonatype.plugins</groupId> |
167 | 197 | <artifactId>nexus-staging-maven-plugin</artifactId> |
168 | | - <version>1.6.8</version> |
| 198 | + <version>1.6.13</version> |
169 | 199 | <extensions>true</extensions> |
170 | 200 | <configuration> |
171 | 201 | <serverId>sonatype-nexus</serverId> |
172 | 202 | <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
173 | 203 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
174 | 204 | </configuration> |
175 | 205 | </plugin> |
| 206 | + <plugin> |
| 207 | + <groupId>org.apache.maven.plugins</groupId> |
| 208 | + <artifactId>maven-gpg-plugin</artifactId> |
| 209 | + <version>1.6</version> |
| 210 | + <executions> |
| 211 | + <execution> |
| 212 | + <id>sign-artifacts</id> |
| 213 | + <phase>verify</phase> |
| 214 | + <goals> |
| 215 | + <goal>sign</goal> |
| 216 | + </goals> |
| 217 | + </execution> |
| 218 | + </executions> |
| 219 | + </plugin> |
176 | 220 | <plugin> |
177 | 221 | <groupId>org.apache.maven.plugins</groupId> |
178 | 222 | <artifactId>maven-release-plugin</artifactId> |
179 | | - <version>2.5.3</version> |
| 223 | + <version>3.0.0</version> |
180 | 224 | <configuration> |
181 | 225 | <pushChanges>false</pushChanges> |
182 | 226 | <localCheckout>true</localCheckout> |
183 | 227 | </configuration> |
184 | 228 | </plugin> |
185 | 229 | <plugin> |
186 | 230 | <groupId>org.apache.maven.plugins</groupId> |
187 | | - <artifactId>maven-assembly-plugin</artifactId> |
188 | | - <version>2.4</version> |
189 | | - <configuration> |
190 | | - <descriptorRefs> |
191 | | - <descriptorRef>jar-with-dependencies</descriptorRef> |
192 | | - </descriptorRefs> |
193 | | - </configuration> |
| 231 | + <artifactId>maven-source-plugin</artifactId> |
| 232 | + <version>3.2.1</version> |
194 | 233 | <executions> |
195 | 234 | <execution> |
196 | | - <phase>none</phase> |
| 235 | + <id>attach-sources</id> |
197 | 236 | <goals> |
198 | | - <goal>single</goal> |
| 237 | + <goal>jar</goal> |
199 | 238 | </goals> |
200 | 239 | </execution> |
201 | 240 | </executions> |
202 | 241 | </plugin> |
| 242 | + <plugin> |
| 243 | + <groupId>org.apache.maven.plugins</groupId> |
| 244 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 245 | + <version>3.5.0</version> |
| 246 | + <executions> |
| 247 | + <execution> |
| 248 | + <id>attach-javadocs</id> |
| 249 | + <goals> |
| 250 | + <goal>jar</goal> |
| 251 | + </goals> |
| 252 | + </execution> |
| 253 | + </executions> |
| 254 | + <configuration> |
| 255 | + <failOnError>false</failOnError> |
| 256 | + </configuration> |
| 257 | + </plugin> |
203 | 258 | <plugin> |
204 | 259 | <artifactId>maven-surefire-plugin</artifactId> |
205 | | - <version>2.22.2</version> |
| 260 | + <version>3.0.0</version> |
206 | 261 | <configuration> |
207 | 262 | <argLine> |
208 | 263 | -javaagent:src/test/resources/agent.jar |
|
0 commit comments