|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>br.com.swconsultoria</groupId> |
| 5 | + <artifactId>java-nfe</artifactId> |
| 6 | + <version>4.00.18-${versao}-SNAPSHOT</version> |
| 7 | + <name>Java_NFe</name> |
| 8 | + <description>Api java para consumo do webService de nota fiscal eletronica</description> |
| 9 | + <url>https://github.com/Samuel-Oliveira/Java_NFe</url> |
| 10 | + |
| 11 | + <licenses> |
| 12 | + <license> |
| 13 | + <name>MIT License</name> |
| 14 | + <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 15 | + <distribution>repo</distribution> |
| 16 | + </license> |
| 17 | + </licenses> |
| 18 | + |
| 19 | + <scm> |
| 20 | + < url> [email protected]:Samuel-Oliveira/Java_NFe.git</ url> |
| 21 | + < connection>scm:git: [email protected]:Samuel-Oliveira/Java_NFe.git</ connection> |
| 22 | + < developerConnection>scm:git: [email protected]:Samuel-Oliveira/Java_NFe.git</ developerConnection> |
| 23 | + <tag>java-nfe</tag> |
| 24 | + </scm> |
| 25 | + |
| 26 | + <properties> |
| 27 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 28 | + <maven.javadoc.failOnError>false</maven.javadoc.failOnError> |
| 29 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 30 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 31 | + <java.version>1.8</java.version> |
| 32 | + </properties> |
| 33 | + |
| 34 | + <!-- Environment Settings --> |
| 35 | + <distributionManagement> |
| 36 | + <repository> |
| 37 | + <id>up.nexus.baseerp.com.br</id> |
| 38 | + <name>up.nexus.baseerp.com.br</name> |
| 39 | + <url>https://nexus.baseerp.com.br/repository/baseerp.snapshot/</url> |
| 40 | + </repository> |
| 41 | + </distributionManagement> |
| 42 | + |
| 43 | + <developers> |
| 44 | + <developer> |
| 45 | + <id>Samuel-Oliveira</id> |
| 46 | + <name>Samuel Borges de Oliveira</name> |
| 47 | + <url>https://github.com/Samuel-Oliveira</url> |
| 48 | + </developer> |
| 49 | + </developers> |
| 50 | + |
| 51 | + <dependencies> |
| 52 | + <!-- Certificado Utils --> |
| 53 | + <dependency> |
| 54 | + <groupId>br.com.swconsultoria</groupId> |
| 55 | + <artifactId>java_certificado</artifactId> |
| 56 | + <version>2.8-${versao}-SNAPSHOT</version> |
| 57 | + </dependency> |
| 58 | + <!-- Ini4J --> |
| 59 | + <dependency> |
| 60 | + <groupId>org.ini4j</groupId> |
| 61 | + <artifactId>ini4j</artifactId> |
| 62 | + <version>0.5.4</version> |
| 63 | + </dependency> |
| 64 | + |
| 65 | + <dependency> |
| 66 | + <groupId>org.apache.httpcomponents</groupId> |
| 67 | + <artifactId>httpcore</artifactId> |
| 68 | + <version>4.4.6</version> |
| 69 | + </dependency> |
| 70 | + |
| 71 | + <!--Java 11--> |
| 72 | + <dependency> |
| 73 | + <groupId>com.sun.xml.bind</groupId> |
| 74 | + <artifactId>jaxb-impl</artifactId> |
| 75 | + <version>2.3.1</version> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>com.sun.xml.bind</groupId> |
| 79 | + <artifactId>jaxb-xjc</artifactId> |
| 80 | + <version>2.3.1</version> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>com.sun.xml.bind</groupId> |
| 84 | + <artifactId>jaxb-core</artifactId> |
| 85 | + <version>2.3.0.1</version> |
| 86 | + </dependency> |
| 87 | + |
| 88 | + <dependency> |
| 89 | + <groupId>org.apache.axis2</groupId> |
| 90 | + <artifactId>axis2-kernel</artifactId> |
| 91 | + <version>1.7.5</version> |
| 92 | + <exclusions> |
| 93 | + <exclusion> |
| 94 | + <artifactId>servlet-api</artifactId> |
| 95 | + <groupId>javax.servlet</groupId> |
| 96 | + </exclusion> |
| 97 | + <exclusion> |
| 98 | + <artifactId>commons-fileupload</artifactId> |
| 99 | + <groupId>commons-fileupload</groupId> |
| 100 | + </exclusion> |
| 101 | + </exclusions> |
| 102 | + </dependency> |
| 103 | + |
| 104 | + <dependency> |
| 105 | + <groupId>org.apache.axis2</groupId> |
| 106 | + <artifactId>axis2-adb</artifactId> |
| 107 | + <version>1.7.5</version> |
| 108 | + </dependency> |
| 109 | + |
| 110 | + <dependency> |
| 111 | + <groupId>org.apache.axis2</groupId> |
| 112 | + <artifactId>axis2-jaxws</artifactId> |
| 113 | + <version>1.7.5</version> |
| 114 | + </dependency> |
| 115 | + |
| 116 | + <dependency> |
| 117 | + <groupId>org.apache.axis2</groupId> |
| 118 | + <artifactId>axis2-transport-http</artifactId> |
| 119 | + <version>1.7.5</version> |
| 120 | + </dependency> |
| 121 | + |
| 122 | + <dependency> |
| 123 | + <groupId>org.apache.axis2</groupId> |
| 124 | + <artifactId>axis2-transport-local</artifactId> |
| 125 | + <version>1.7.5</version> |
| 126 | + </dependency> |
| 127 | + |
| 128 | + <dependency> |
| 129 | + <groupId>org.apache.ws.commons.axiom</groupId> |
| 130 | + <artifactId>axiom-api</artifactId> |
| 131 | + <version>1.2.20</version> |
| 132 | + </dependency> |
| 133 | + <dependency> |
| 134 | + <groupId>org.jmockit</groupId> |
| 135 | + <artifactId>jmockit</artifactId> |
| 136 | + <version>1.46</version> |
| 137 | + <scope>test</scope> |
| 138 | + </dependency> |
| 139 | + <dependency> |
| 140 | + <groupId>org.junit.jupiter</groupId> |
| 141 | + <artifactId>junit-jupiter</artifactId> |
| 142 | + <version>5.4.0</version> |
| 143 | + <scope>test</scope> |
| 144 | + </dependency> |
| 145 | + <dependency> |
| 146 | + <groupId>org.projectlombok</groupId> |
| 147 | + <artifactId>lombok</artifactId> |
| 148 | + <version>1.18.22</version> |
| 149 | + <scope>provided</scope> |
| 150 | + </dependency> |
| 151 | + |
| 152 | + </dependencies> |
| 153 | + |
| 154 | + <build> |
| 155 | + <plugins> |
| 156 | + <plugin> |
| 157 | + <groupId>org.apache.maven.plugins</groupId> |
| 158 | + <artifactId>maven-compiler-plugin</artifactId> |
| 159 | + <version>3.8.0</version> |
| 160 | + <configuration> |
| 161 | + <source>1.8</source> |
| 162 | + <target>1.8</target> |
| 163 | + </configuration> |
| 164 | + </plugin> |
| 165 | + <plugin> |
| 166 | + <groupId>org.sonatype.plugins</groupId> |
| 167 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 168 | + <version>1.6.8</version> |
| 169 | + <extensions>true</extensions> |
| 170 | + <configuration> |
| 171 | + <serverId>sonatype-nexus</serverId> |
| 172 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 173 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 174 | + </configuration> |
| 175 | + </plugin> |
| 176 | + <plugin> |
| 177 | + <groupId>org.apache.maven.plugins</groupId> |
| 178 | + <artifactId>maven-release-plugin</artifactId> |
| 179 | + <version>2.5.3</version> |
| 180 | + <configuration> |
| 181 | + <pushChanges>false</pushChanges> |
| 182 | + <localCheckout>true</localCheckout> |
| 183 | + </configuration> |
| 184 | + </plugin> |
| 185 | + <plugin> |
| 186 | + <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> |
| 194 | + <executions> |
| 195 | + <execution> |
| 196 | + <phase>none</phase> |
| 197 | + <goals> |
| 198 | + <goal>single</goal> |
| 199 | + </goals> |
| 200 | + </execution> |
| 201 | + </executions> |
| 202 | + </plugin> |
| 203 | + <plugin> |
| 204 | + <artifactId>maven-surefire-plugin</artifactId> |
| 205 | + <version>2.22.2</version> |
| 206 | + <configuration> |
| 207 | + <argLine> |
| 208 | + -javaagent:src/test/resources/agent.jar |
| 209 | + </argLine> |
| 210 | + </configuration> |
| 211 | + </plugin> |
| 212 | + </plugins> |
| 213 | + </build> |
| 214 | +</project> |
0 commit comments