ns.dhelm.candlebasic.dhelm-candlebasic.1.0.3.source-code.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dhelm-candlebasic Show documentation
Show all versions of dhelm-candlebasic Show documentation
This library provides the necessary implementations to screen the following basic patterns:
Long White Candle
Long Black Candle
White Candle
Black Candle
Short White Candle
Short Black Candle
White Marubozu
Black Marubozu
Closing White Marubozu
Opening White Marubozu
Closing Black Marubozu
Opening Black Marubozu
White Spinning Top
Black Spinning Top
Long Legged Doji
Dragonfly Doji
Grave stone Doji
Doji
Four price Doji
Highwave
<?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>in.kncsolutions.dhelm</groupId> <artifactId>dhelm</artifactId> <version>1.0.3</version> </parent> <groupId>in.kncsolutions.dhelm.candlebasic</groupId> <artifactId>dhelm-candlebasic</artifactId> <version>1.0.3</version> <packaging>jar</packaging> <name>dhelm-candlebasic</name> <url>https://dhelm.kncsolutions.in</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>KNC Solutions Private Limited. </name> </organization> <developers> <developer> <name>Pallav Nandi Chaudhuri</name> <email>[email protected]</email> <organization>Knc Solutions Private Limited</organization> <organizationUrl>https://www.dhelm.kncsolutions.in</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/kncsolutions/dhelm.git</connection> <developerConnection>scm:git:https://github.com/kncsolutions/dhelm.git</developerConnection> <url>https://github.com/kncsolutions/dhelm</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>in.kncsolutions.dhelm.exceptions</groupId> <artifactId>dhelm-exceptions</artifactId> <version>1.0.3</version> </dependency> <dependency> <groupId>in.kncsolutions.dhelm.mathcal</groupId> <artifactId>dhelm-mathcal</artifactId> <version>1.0.3</version> </dependency> </dependencies> <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> <build> <plugins> <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.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-source-plugin</artifactId> <version>2.2.1</version> <configuration> <forceCreation>true</forceCreation> <includePom>true</includePom> <useDefaultManifestFile>true</useDefaultManifestFile> </configuration> <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-javadoc-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>