lime-trader-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.ramanbabich.investment</groupId> <artifactId>lime-trader-client</artifactId> <version>0.1.2</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.ramanbabich.investment</groupId> <artifactId>lime-trader-client</artifactId> <name>${project.groupId}:${project.artifactId}</name> <version>0.1.2</version> <description>The client for the https://lime.co/ trader api</description> <url>https://github.com/raman-babich/investment-lime-trader-client</url> <inceptionYear>2023</inceptionYear> <developers> <developer> <name>Raman Babich</name> <email>ramanbabich@gmail.com</email> <url>https://github.com/raman-babich</url> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:raman-babich/investment-lime-trader-client.git</connection> <developerConnection>scm:git:git@github.com:raman-babich/investment-lime-trader-client.git</developerConnection> <tag>v0.1.2</tag> <url>https://github.com/raman-babich/investment-lime-trader-client</url> </scm> <build> <plugins> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>${spotless-maven-plugin.version}</version> <executions> <execution> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <java> <palantirJavaFormat> <style>GOOGLE</style> </palantirJavaFormat> </java> <pom> <sortPom> <expandEmptyElements>false</expandEmptyElements> <keepBlankLines>false</keepBlankLines> <predefinedSortOrder>custom_1</predefinedSortOrder> <sortDependencies>scope,groupId,artifactId</sortDependencies> <sortModules>true</sortModules> <sortPlugins>groupId,artifactId</sortPlugins> <sortProperties>true</sortProperties> </sortPom> </pom> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>${license-maven-plugin.version}</version> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <properties> <year>${project.currentYear}</year> <owner>${project.owner}</owner> </properties> <mapping> <java>JAVA_EXTRBLNK</java> </mapping> <defaultInlineHeaderStyles> <defaultInlineHeaderStyle> <name>java_extrblnk</name> <firstLine>/*</firstLine> <beforeEachLine>*</beforeEachLine> <endLine>*/</endLine> <firstLineDetectionPattern>(\\s|\\t)*/\\*.*$</firstLineDetectionPattern> <lastLineDetectionPattern>.*\\*/(\\s|\\t)*$</lastLineDetectionPattern> <allowBlankLines>false</allowBlankLines> <multiLine>true</multiLine> <padLines>false</padLines> </defaultInlineHeaderStyle> </defaultInlineHeaderStyles> <licenseSets> <licenseSet> <basedir>${project.basedir}</basedir> <inlineHeader>Copyright ${year} ${owner}. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.</inlineHeader> <excludes> <exclude>README.adoc</exclude> <exclude>NOTICE.txt</exclude> <exclude>LICENSE.txt</exclude> <exclude>subcomponent-licenses/**</exclude> <exclude>target/**</exclude> </excludes> </licenseSet> </licenseSets> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <compilerArgs> <arg>-parameters</arg> </compilerArgs> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.6.3</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> <configuration> <archive> <manifestEntries> <Multi-Release>true</Multi-Release> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <releaseProfiles>release</releaseProfiles> <tagNameFormat>v@{project.version}</tagNameFormat> <scmDevelopmentCommitComment>build: prepare for next development iteration</scmDevelopmentCommitComment> <scmReleaseCommitComment>build: prepare release @{releaseLabel}</scmReleaseCommitComment> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <resources> <resource> <directory>${project.basedir}</directory> <includes> <include>LICENSE.txt</include> <include>NOTICE.txt</include> </includes> <filtering>true</filtering> </resource> </resources> <outputDirectory>${project.build.outputDirectory}/META-INF</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>${maven-shade-plugin.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <useDependencyReducedPomInJar>true</useDependencyReducedPomInJar> <dependencyReducedPomLocation>${basedir}/target/dependency-reduced-pom.xml</dependencyReducedPomLocation> <artifactSet> <excludes> <exclude>org.slf4j:*</exclude> </excludes> </artifactSet> <filters> <filter> <artifact>com.fasterxml.jackson.*:*</artifact> <excludes> <exclude>META-INF/MANIFEST.MF</exclude> <exclude>META-INF/NOTICE</exclude> <exclude>META-INF/*NOTICE</exclude> <exclude>META-INF/LICENSE</exclude> <exclude>META-INF/*LICENSE</exclude> <exclude>META-INF/services/**</exclude> <exclude>META-INF/versions/**/module-info.*</exclude> <exclude>META-INF/maven/**</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>com.fasterxml.jackson</pattern> <shadedPattern>com.ramanbabich.investment.limetraderclient.common.jackson</shadedPattern> </relocation> <relocation> <pattern>META-INF/versions/11/com/fasterxml/jackson/core/io/doubleparser</pattern> <shadedPattern>META-INF/versions/11/com/ramanbabich/investment/limetraderclient/common/jackson/core/io/doubleparser</shadedPattern> </relocation> <relocation> <pattern>META-INF/versions/17/com/fasterxml/jackson/core/io/doubleparser</pattern> <shadedPattern>META-INF/versions/17/com/ramanbabich/investment/limetraderclient/common/jackson/core/io/doubleparser</shadedPattern> </relocation> <relocation> <pattern>META-INF/versions/19/com/fasterxml/jackson/core/io/doubleparser</pattern> <shadedPattern>META-INF/versions/19/com/ramanbabich/investment/limetraderclient/common/jackson/core/io/doubleparser</shadedPattern> </relocation> <relocation> <pattern>META-INF/versions/21/com/fasterxml/jackson/core/io/doubleparser</pattern> <shadedPattern>META-INF/versions/21/com/ramanbabich/investment/limetraderclient/common/jackson/core/io/doubleparser</shadedPattern> </relocation> </relocations> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>${versions-maven-plugin.version}</version> <configuration> <ruleSet> <ignoreVersions> <ignoreVersion> <type>regex</type> <version>(?i)(.+-rc|.+-m\d|.+-(dev|alpha|beta).*)</version> </ignoreVersion> </ignoreVersions> </ruleSet> </configuration> </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://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <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> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <bottom>Copyright ${project.currentYear} ${project.owner}.</bottom> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.12</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>2.16.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>snakeyaml</artifactId> <groupId>org.yaml</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <version>2.23.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>log4j-api</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-core</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.10.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-params</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-engine</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.11.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <project.currentYear>2023</project.currentYear> <maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version> <jackson.version>2.16.2</jackson.version> <maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version> <slf4j.version>2.0.12</slf4j.version> <log4j.version>2.23.1</log4j.version> <junit.version>5.10.2</junit.version> <maven-jar-plugin.version>3.3.0</maven-jar-plugin.version> <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version> <project.owner>the original author or authors</project.owner> <maven-shade-plugin.version>3.5.2</maven-shade-plugin.version> <versions-maven-plugin.version>2.16.2</versions-maven-plugin.version> <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version> <spotless-maven-plugin.version>2.43.0</spotless-maven-plugin.version> <maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version> <maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version> <license-maven-plugin.version>4.3</license-maven-plugin.version> <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> <maven-release-plugin.version>3.0.1</maven-release-plugin.version> <maven-source-plugin.version>3.3.0</maven-source-plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>17</java.version> <mockito.version>5.11.0</mockito.version> <sortpom-maven-plugin.version>3.2.1</sortpom-maven-plugin.version> </properties> </project>