jota-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.iota</groupId> <artifactId>jota-parent</artifactId> <version>1.0.0-beta9</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>org.iota</groupId> <artifactId>jota-parent</artifactId> <version>1.0.0-beta9</version> <packaging>pom</packaging> <name>JOTA</name> <description>JOTA library is a simple Java wrapper around IOTA Node's JSON-REST HTTP interface.</description> <url>https://github.com/iotaledger/iota-java</url> <scm> <url>https://github.com/iotaledger/iota-java</url> <connection>scm:git:https://github.com/iotaledger/iota-java.git</connection> <developerConnection>scm:git:https://github.com/iotaledger/iota-java.git</developerConnection> <tag>HEAD</tag> </scm> <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> <developers> <developer> <id>pinpong</id> <name>Oliver Nitzschke</name> </developer> <developer> <id>davassi</id> <name>Gianluigi Davassi</name> </developer> <developer> <id>adrianziser</id> </developer> <developer> <id>heinrichreimer</id> <name>Heinrich Reimer</name> </developer> <developer> <id>jpkrohling</id> <name>Juraci Paixão Kröhling</name> </developer> <developer> <id>th0br0</id> <name>Andreas C. Osowski</name> </developer> <developer> <id>kwek20</id> <name>Brord van Wierst</name> </developer> <developer> <id>ezienecker</id> <name>Emanuel Zienecker</name> </developer> </developers> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- plugins --> <version.maven-checkstyle-plugin>3.0.0</version.maven-checkstyle-plugin> <version.maven-release-plugin>2.5.3</version.maven-release-plugin> <version.maven-source-plugin>3.0.1</version.maven-source-plugin> <version.maven-javadoc-plugin>3.1.0</version.maven-javadoc-plugin> <version.maven-site-plugin>3.7.1</version.maven-site-plugin> <version.maven-surefire-plugin>2.22.2</version.maven-surefire-plugin> <version.maven-failsafe-plugin>2.22.2</version.maven-failsafe-plugin> <version.maven-project-info-reports-plugin>2.9</version.maven-project-info-reports-plugin> <dependency-check-maven.version>5.2.2</dependency-check-maven.version> <!-- Please keep this, this is needed for test purposes, if the test runs on Jitpack these values will be adjusted --> <md-doclet-group>org.iota</md-doclet-group> <md-doclet-artifactId>java-md-doclet</md-doclet-artifactId> <md-doclet-version>2.2</md-doclet-version> <checkstyle.config.location>checkstyle.xml</checkstyle.config.location> <bcprov-jdk15on.version>1.61</bcprov-jdk15on.version> <retrofit.version>2.8.2</retrofit.version> <commons-lang3.version>3.10</commons-lang3.version> <slf4j-api.version>1.7.30</slf4j-api.version> <commons-io.version>2.6</commons-io.version> <jadler-all.version>1.3.0</jadler-all.version> <zxing.version>3.4.0</zxing.version> <javase.version>2.6.0</javase.version> <jackson-databind.version>2.11.0</jackson-databind.version> <mongodb-driver.version>3.4.3</mongodb-driver.version> <bson.version>3.5.0</bson.version> <!-- Test dependencies --> <junit-jupiter.version>5.6.2</junit-jupiter.version> <mockito.version>3.3.3</mockito.version> <hamcrest.version>2.2</hamcrest.version> </properties> <modules> <module>jota</module> </modules> <repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories> <dependencyManagement> <dependencies> <!-- API specific --> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>${bcprov-jdk15on.version}</version> </dependency> <dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>retrofit</artifactId> <version>${retrofit.version}</version> </dependency> <dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>converter-gson</artifactId> <version>${retrofit.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang3.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j-api.version}</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons-io.version}</version> </dependency> <dependency> <groupId>${md-doclet-group}</groupId> <artifactId>${md-doclet-artifactId}</artifactId> <version>${md-doclet-version}</version> </dependency> <!-- Account specific --> <dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>${zxing.version}</version> </dependency> <dependency> <groupId>com.github.kenglxn.qrgen</groupId> <artifactId>javase</artifactId> <version>${javase.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson-databind.version}</version> </dependency> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongodb-driver</artifactId> <version>${mongodb-driver.version}</version> </dependency> <dependency> <groupId>org.mongodb</groupId> <artifactId>bson</artifactId> <version>${bson.version}</version> </dependency> <!-- Testing --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>${hamcrest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>net.jadler</groupId> <artifactId>jadler-all</artifactId> <version>${jadler-all.version}</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> </exclusions> </dependency> </dependencies> </dependencyManagement> <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> <resources> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> </resource> </resources> <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-checkstyle-plugin</artifactId> <version>${version.maven-checkstyle-plugin}</version> <configuration> <logViolationsToConsole>true</logViolationsToConsole> </configuration> <executions> <execution> <id>validate</id> <phase>validate</phase> <configuration> <configLocation>${checkstyle.config.location}</configLocation> <encoding>UTF-8</encoding> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> </configuration> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>${version.maven-release-plugin}</version> <configuration> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <autoVersionSubmodules>true</autoVersionSubmodules> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${version.maven-surefire-plugin}</version> <configuration> <excludedGroups>IntegrationTest</excludedGroups> <useSystemClassLoader>false</useSystemClassLoader> </configuration> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>${version.maven-failsafe-plugin}</version> </plugin> <plugin> <groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId> <version>${dependency-check-maven.version}</version> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${version.maven-project-info-reports-plugin}</version> </plugin> </plugins> </reporting> <profiles> <profile> <id>build</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> <manifest> <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> <artifactId>maven-source-plugin</artifactId> <version>${version.maven-source-plugin}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${version.maven-javadoc-plugin}</version> <configuration> <failOnError>false</failOnError> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <phase>package</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>${version.maven-site-plugin}</version> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <activation> <activeByDefault>false</activeByDefault> </activation> <properties> <gpg.keyname>${env.GPG_KEYNAME}</gpg.keyname> <gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>