hyperledger-fabric-spring-boot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.bxforce</groupId>
<artifactId>hyperledger-fabric-spring-boot</artifactId>
<version>1.0.2-RELEASE</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>com.github.bxforce</groupId>
<artifactId>hyperledger-fabric-spring-boot</artifactId>
<version>1.0.2-RELEASE</version>
<packaging>pom</packaging>
<name>hyperledger-fabric-spring-boot</name>
<description>A demo for deployment to the Central Repository via OSSRH</description>
<url>https://github.com/bxforce/hyperledger-fabric-spring-boot</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>mvanmeerbeck</id>
<name>Maxime Vanmeerbeck</name>
<email>maxime.vanmeerbeck@gmail.com</email>
<url>https://github.com/mvanmeerbeck</url>
<organization>bxforce</organization>
<organizationUrl>https://github.com/bxforce</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>Europe/Paris</timezone>
</developer>
</developers>
<organization>
<name>bxforce</name>
<url>https://github.com/bxforce</url>
</organization>
<scm>
<connection>scm:git:git@github.com:bxforce/hyperledger-fabric-spring-boot.git</connection>
<developerConnection>scm:git:git@github.com:bxforce/hyperledger-fabric-spring-boot.git</developerConnection>
<url>https://github.com/bxforce/hyperledger-fabric-spring-boot</url>
</scm>
<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>
<java.version>11</java.version>
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<fabric-gateway-java.version>2.2.0</fabric-gateway-java.version>
<spring-boot.version>2.3.3.RELEASE</spring-boot.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
</properties>
<modules>
<module>hyperledger-fabric-spring-boot-autoconfigure</module>
<module>hyperledger-fabric-spring-boot-starter</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<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>
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
</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>
</plugins>
</build>
</project>