项目作者: hexindai

项目描述 :
Hexindai Maven Plugin
高级语言: Java
项目地址: git://github.com/hexindai/hexindai-maven-plugin.git
创建时间: 2020-04-21T13:53:35Z
项目社区:https://github.com/hexindai/hexindai-maven-plugin

开源协议:

下载


Hexindai Maven Plugin

Github Workflows

A Maven plugin. Work in progress

Will add many features. Just wait. Thank you.

How to use?

  1. Add this plugin to you pom.xml
    1. <build>
    2. <plugins>
    3. <plugin>
    4. <groupId>com.github.hexindai.maven.plugins</groupId>
    5. <artifactId>hexindai-maven-plugin</artifactId>
    6. <version>0.0.1</version>
    7. <configuration>
    8. <properties>
    9. <property>
    10. <name>tableNamePrefix</name>
    11. <value>New_V_FundIO_</value>
    12. </property>
    13. <property>
    14. <name>shardingCount</name>
    15. <value>512</value>
    16. </property>
    17. <property>
    18. <name>seed</name>
    19. <value>12341234</value>
    20. </property>
    21. <property>
    22. <name>numOfNodesPerTable</name>
    23. <value>5</value>
    24. </property>
    25. </properties>
    26. </configuration>
    27. </plugin>
    28. </plugins>
    29. </build>
  2. Run this plugin

```shell script
./mvnw com.github.hexindai.maven.plugins:hexindai-maven-plugin:0.0.1:newvfundio -Duserid=148407

  1. This command is too long. Like short? Add the following to your `~/.m2/settings.xml` file.
  2. ```diff
  3. <pluginGroups>
  4. + <pluginGroup>com.github.hexindai.maven.plugins</pluginGroup>
  5. </pluginGroups>
  1. Enjoy

shell script ./mvnw hexindai:newvfundio -Duserid=148407