cielo-lio-remote-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.frekele.cielo</groupId> <artifactId>cielo-lio-remote-client</artifactId> <version>1.4.6</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- cielo-lio-remote-client - https://github.com/frekele/cielo-lio-remote-client MIT License Copyright (c) 2018 {frekele Leandro Kersting de Freitas} Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <name>cielo-lio-remote-client</name> <groupId>org.frekele.cielo</groupId> <artifactId>cielo-lio-remote-client</artifactId> <version>1.4.6</version> <packaging>jar</packaging> <inceptionYear>2018</inceptionYear> <url>http://frekele.org</url> <description>Cielo LIO Remote Java Client.</description> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <id>frekele</id> <name>Leandro Kersting de Freitas</name> <email>leandro@frekele.org</email> <url>https://github.com/frekele</url> </developer> </developers> <scm> <url>https://github.com/frekele/cielo-lio-remote-client</url> <connection>scm:git:https://github.com/frekele/cielo-lio-remote-client.git</connection> <developerConnection>scm:git:https://github.com/frekele/cielo-lio-remote-client.git</developerConnection> <tag>HEAD</tag> </scm> <issueManagement> <url>https://github.com/frekele/cielo-lio-remote-client/issues</url> <system>GitHub Issues</system> </issueManagement> <ciManagement> <system>Travis-CI</system> <url>https://travis-ci.org/frekele/cielo-lio-remote-client</url> </ciManagement> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <encoding>UTF-8</encoding> <file.encoding>UTF-8</file.encoding> <console.encoding>UTF-8</console.encoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.source>1.8</maven.compiler.source> <project.scm.id>github</project.scm.id> <resteasy.version>3.6.3.Final</resteasy.version> <cdi-api.version>2.0.SP1</cdi-api.version> <testng.version>6.14.3</testng.version> <mockito-core.version>2.25.1</mockito-core.version> <jacoco.version>0.8.3</jacoco.version> <maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version> <maven-failsafe-plugin.version>2.22.1</maven-failsafe-plugin.version> <maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version> <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version> <maven-javadoc-plugin.version>3.1.0</maven-javadoc-plugin.version> <maven-source-plugin.version>3.0.1</maven-source-plugin.version> <maven-bundle-plugin.version>4.1.0</maven-bundle-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version> <versions-maven-plugin.version>2.7</versions-maven-plugin.version> <javadoc.additional.options>-Xdoclint:none</javadoc.additional.options> <!-- mvn -DskipITs=false : Skips Unit tests --> <skipUTs>false</skipUTs> <!-- mvn -DskipITs=true : Skips Integration tests --> <skipITs>true</skipITs> <!-- mvn -Dmaven.javadoc.skip=true : Skips Generate JavaDoc .jar--> <maven.javadoc.skip>true</maven.javadoc.skip> <!-- mvn -Dmaven.source.skip=true : Skips Generate JavaSource .jar --> <maven.source.skip>true</maven.source.skip> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-bom</artifactId> <version>${resteasy.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>javax.enterprise</groupId> <artifactId>cdi-api</artifactId> <version>${cdi-api.version}</version> </dependency> <!-- Begin RESTEasy Dependencies --> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-client</artifactId> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-jaxrs</artifactId> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-jackson2-provider</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jdk8</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> </dependency> <!-- End RESTEasy Dependencies --> <!-- Begin Test Dependencies --> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito-core.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jacoco</groupId> <artifactId>org.jacoco.core</artifactId> <version>${jacoco.version}</version> <scope>test</scope> </dependency> <!-- end Test Dependencies --> </dependencies> <build> <sourceDirectory>src/main/java</sourceDirectory> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> <testSourceDirectory>src/test/java</testSourceDirectory> <testResources> <testResource> <directory>src/test/resources</directory> <filtering>true</filtering> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> <configuration> <archive> <index>true</index> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <header><![CDATA[<b>${project.name} ${project.version}</b>]]></header> <footer><![CDATA[<b>${project.name} ${project.version}</b>]]></footer> <archive> <index>true</index> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> <additionalOptions>${javadoc.additional.options}</additionalOptions> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <configuration> <archive> <index>true</index> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- e http://felix.apache.org/documentation/subprojects/apache-felix-maven-bundle-plugin-bnd.html--> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${maven-bundle-plugin.version}</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <supportedProjectTypes> <supportedProjectType>jar</supportedProjectType> </supportedProjectTypes> <instructions> <!--<_nouses>true</_nouses>--> <!--<_nodefaultversion>true</_nodefaultversion>--> <!--<_noextraheaders>true</_noextraheaders>--> <_noee>true</_noee> <Export-Package/> <Import-Package/> <Private-Package/> <!--<Include-Resource />--> </instructions> <archive> <index>true</index> <manifest> <addClasspath>false</addClasspath> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addExtensions>false</addExtensions> </manifest> <manifestEntries> <Implementation-URL>${project.url}</Implementation-URL> <Java-Version>${java.version}</Java-Version> <Java-Vendor>${java.vendor}</Java-Vendor> <Os-Name>${os.name}</Os-Name> <Os-Arch>${os.arch}</Os-Arch> <Os-Version>${os.version}</Os-Version> <Scm-Url>${project.scm.url}</Scm-Url> <Scm-Connection>${project.scm.connection}</Scm-Connection> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>${versions-maven-plugin.version}</version> </plugin> <!-- CONFIGURA TESTE UNITARIO--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <!-- CONFIGURA TESTE DE INTEGRACAO--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven-failsafe-plugin.version}</version> <executions> <execution> <id>integration-test</id> <goals> <goal>integration-test</goal> </goals> </execution> <execution> <id>verify</id> <goals> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <id>jacoco-initialize</id> <phase>initialize</phase> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>jacoco-report</id> <phase>verify</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>windows</id> <activation> <os> <family>windows</family> </os> </activation> </profile> <profile> <id>unix</id> <activation> <os> <family>unix</family> </os> </activation> </profile> </profiles> </project>