oma
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.telecomsdn.openapi.sdk</groupId>
<artifactId>oma</artifactId>
<version>1.2.2.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">
<parent>
<groupId>com.github.telecomsdn.openapi.sdk</groupId>
<artifactId>parent</artifactId>
<version>1.2.2.2-RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.telecomsdn.openapi.sdk</groupId>
<artifactId>oma</artifactId>
<version>1.2.2.2-RELEASE</version>
<packaging>jar</packaging>
<properties>
<!-- 文件拷贝时的编码 -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- 编译时的编码 -->
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>com.github.telecomsdn.openapi.sdk</groupId>
<artifactId>framework</artifactId>
<version>1.2.2.2-RELEASE</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<!--<groupId>com.github.shalousun</groupId>-->
<!--<artifactId>smart-doc-maven-plugin</artifactId>-->
<!--<version>1.0.6</version>-->
<groupId>com.github.calmking</groupId>
<artifactId>smart-doc-maven-plugin</artifactId>
<version>1.0.7</version>
<configuration>
<!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
<configFile>./src/smart-doc.json</configFile>
<!--指定项目名称-->
<!--smart-doc实现自动分析依赖树加载第三方依赖的源码,如果一些框架依赖库加载不到导致报错,这时请使用excludes排除掉-->
<excludes>
<!--格式为:groupId:artifactId;参考如下-->
<exclude>com.alibaba:fastjson</exclude>
<exclude>org.apache.kafka:kafka-clients</exclude>
</excludes>
</configuration>
<executions>
<execution>
<!--如果不需要在执行编译时启动smart-doc,则将phase注释掉-->
<phase>compile</phase>
<goals>
<goal>markdown</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>