easydoc-gradle-plugin

easydoc plugin for gradle

License

License

Categories

Categories

Gradle Build Tools
GroupId

GroupId

com.stalary
ArtifactId

ArtifactId

easydoc-gradle-plugin
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

easydoc-gradle-plugin
easydoc plugin for gradle
Project URL

Project URL

https://github.com/Easy-doc/easydoc-gradle-plugin
Source Code Management

Source Code Management

https://github.com/Easy-doc/easydoc-gradle-plugin

Download easydoc-gradle-plugin

How to add to project

<!-- https://jarcasting.com/artifacts/com.stalary/easydoc-gradle-plugin/ -->
<dependency>
    <groupId>com.stalary</groupId>
    <artifactId>easydoc-gradle-plugin</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.stalary/easydoc-gradle-plugin/
implementation 'com.stalary:easydoc-gradle-plugin:1.0.0'
// https://jarcasting.com/artifacts/com.stalary/easydoc-gradle-plugin/
implementation ("com.stalary:easydoc-gradle-plugin:1.0.0")
'com.stalary:easydoc-gradle-plugin:jar:1.0.0'
<dependency org="com.stalary" name="easydoc-gradle-plugin" rev="1.0.0">
  <artifact name="easydoc-gradle-plugin" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.stalary', module='easydoc-gradle-plugin', version='1.0.0')
)
libraryDependencies += "com.stalary" % "easydoc-gradle-plugin" % "1.0.0"
[com.stalary/easydoc-gradle-plugin "1.0.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

logo

easydoc-gradle-plugin

easy-doc的gradle插件,用于存储过滤后的源文件,文件会在resouce中生成

版本说明

1.0.0

  • 第一个线上可用版本
  • 可以选择解析指定文件以及跳过指定文件

引入依赖方法

在build.gradle中引入

buildscript {
    dependencies {
        classpath 'com.stalary:easydoc-gradle-plugin-${version}' // 依赖远程插件
    }
}
apply plugin: 'EasyDocPlugin'
easydoc {
    path = 'com.easydoc' // 需要扫描的包路径
    excludeFile = 'A,B,C' // 需要跳过的文件,用,隔开
    includeFile = 'D,F' // 路径下包含的文件,用,隔开
}

使用方法

gradle easydoc即可生成easydoc.txt

com.stalary

Easy-doc

简单易用的接口文档生成工具

Versions

Version
1.0.0
0.1.0
0.0.1