bop-framework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>cn.bitfactory</groupId>
<artifactId>bop-framework</artifactId>
<version>1.0.1-beta</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>cn.bitfactory</groupId>
<artifactId>bop-framework</artifactId>
<version>1.0.1-beta</version>
<packaging>pom</packaging>
<modules>
<module>bop-java-sdk</module>
<module>bop-java-subscription</module>
</modules>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- 生成Javadoc包 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<!-- 忽略Javadoc警告 -->
<additionalJOption>-Xdoclint:none</additionalJOption>
<!-- 允许中文文档 -->
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<charset>UTF-8</charset>
</configuration>
</execution>
</executions>
</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>
<configuration>
<keyId>79C6DE052642DB2CDEDE0F6900DCCF0EA1EF3A6A</keyId>
</configuration>
</plugin>
</plugins>
</build>
<name>bop-framework</name>
<description>Bitfactory BOP framwork</description>
<url>https://github.com/caict-4iot-dev/bop-framework</url> <!-- 替换为实际项目地址 -->
<licenses>
<license>
<name>Apache License 2.0</name>
<url> http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<scm>
<url>https://github.com/caict-4iot-dev/bop-framework/</url>
<connection>scm:git:https://github.com/caict-4iot-dev/bop-framework.git</connection>
<developerConnection>scm:git:git@github.com:caict-4iot-dev/bop-framework.git</developerConnection>
</scm>
<developers>
<developer>
<id>wolfbrother</id>
<name>wolfbrother</name>
<email>jlxufly@gmail.com</email>
</developer>
</developers>
</project>