vts-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>tr.com.terrayazilim.vts.client</groupId> <artifactId>vts-client</artifactId> <version>0.0.8</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>tr.com.terrayazilim.vts.client</groupId> <artifactId>vts-client</artifactId> <version>0.0.8</version> <packaging>jar</packaging> <name>vts-client</name> <url>https://bitbucket.org/terrayazilim/vts-client</url> <description>client for vts-server</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- -Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2 --> <https.protocols>TLSv1,TLSv1.1,TLSv1.2</https.protocols> <java.version>1.7</java.version> <maven-jar-plugin.version>3.0.2</maven-jar-plugin.version> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> <netty.version>4.1.23.Final</netty.version> <jackson-core.version>2.7.9</jackson-core.version> <jackson-databind.version>2.7.9</jackson-databind.version> <okhttp3.version>3.10.0</okhttp3.version> <slf4j-api.version>1.7.21</slf4j-api.version> <junit.version>4.12</junit.version> </properties> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> <distribution>manual</distribution> </license> </licenses> <organization> <name>Terra Software Informatics LLC.</name> <url>www.terrayazilim.com.tr</url> </organization> <developers> <developer> <id>süvari</id> <name>M.Çağrı Tepebaşılı</name> <roles> <role> Java Developer </role> </roles> <email>cagritepebasili@terrayazilim.com.tr</email> <organizationUrl>www.terrayazilim.com.tr</organizationUrl> <organization>Terra Yazılım Bilişim Hiz. Elek. Dan. Oto. ve Loj. Tic. Ltd. Şti.</organization> </developer> </developers> <profiles> <profile> <id>doclint-java8-disable</id> <activation> <jdk>[1.8,)</jdk> </activation> <properties> <javadoc.opts>-Xdoclint:none</javadoc.opts> </properties> </profile> </profiles> <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> <issueManagement> <url>https://bitbucket.org/terrayazilim/vts-client/issues</url> </issueManagement> <scm> <connection>scm:git:https://bitbucket.org/terrayazilim/vts-client.git</connection> <developerConnection>scm:git:https://bitbucket.org/terrayazilim/vts-client.git</developerConnection> <url>https://bitbucket.org/terrayazilim/vts-client</url> </scm> <dependencies> <dependency> <groupId>tr.com.terrayazilim.tms</groupId> <artifactId>terrayazilim-tms</artifactId> <version>0.0.4</version> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>3.11.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson-databind.version}</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-transport</artifactId> <version>${netty.version}</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler</artifactId> <version>${netty.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/io.netty/netty-common --> <dependency> <groupId>io.netty</groupId> <artifactId>netty-common</artifactId> <version>${netty.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/io.netty/netty-codec-stomp --> <dependency> <groupId>io.netty</groupId> <artifactId>netty-codec-stomp</artifactId> <version>${netty.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/io.netty/netty-codec-http --> <dependency> <groupId>io.netty</groupId> <artifactId>netty-codec-http</artifactId> <version>4.1.23.Final</version> </dependency> <!-- https://mvnrepository.com/artifact/io.netty/netty-buffer --> <dependency> <groupId>io.netty</groupId> <artifactId>netty-buffer</artifactId> <version>4.1.23.Final</version> </dependency> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j-api.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.25</version> </dependency> <!-- Unit Test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <finalName>vts-client</finalName> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <showDeprecation>true</showDeprecation> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <configuration> <locale>en_US</locale> <additionalparam>${javadoc.opts}</additionalparam> </configuration> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <skipIfEmpty>true</skipIfEmpty> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> <manifest> <mainClass> tr.com.terrayazilim.vts.client.ApplicationCLI </mainClass> </manifest> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <!-- this is used for inheritance merges --> <phase>package</phase> <!-- bind to the packaging phase --> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <phase>verify</phase> <goals> <goal>checkstyle</goal> </goals> </execution> </executions> <configuration> <consoleOutput>true</consoleOutput> <enableRSS>false</enableRSS> <configLocation>/checkstyle.xml</configLocation> </configuration> </plugin> </plugins> </build> </project>