-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
263 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Copyright (c) 2020 weixiao | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/bash | ||
mvn versions:set -DnewVersion=$1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
345 changes: 171 additions & 174 deletions
345
hbase-manager-admin/src/main/resources/sql/hbase-manager.sql
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,14 +5,14 @@ | |
|
||
<groupId>com.leo</groupId> | ||
<artifactId>hbase-manager</artifactId> | ||
<version>1.0.0</version> | ||
<version>1.0.1</version> | ||
|
||
<name>hbase-manager</name> | ||
<url>https://www.jielongping.com</url> | ||
<description>若依管理系统</description> | ||
<description>HBaseManager表管理系统</description> | ||
|
||
<properties> | ||
<hbase-manager.version>1.0.0</hbase-manager.version> | ||
<hbase-manager.version>${project.version}</hbase-manager.version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<java.version>1.8</java.version> | ||
|
@@ -32,6 +32,35 @@ | |
<velocity.version>1.7</velocity.version> | ||
</properties> | ||
|
||
<licenses> | ||
<!-- 开源协议 --> | ||
<license> | ||
<name>MIT License</name> | ||
<url>http://www.opensource.org/licenses/mit-license.php</url> | ||
</license> | ||
</licenses> | ||
|
||
<scm> | ||
<!-- scm 信息 --> | ||
<url>https://github.com/CCweixiao/hbase-manager</url> | ||
<connection>https://github.com/CCweixiao/hbase-manager.git</connection> | ||
</scm> | ||
|
||
<developers> | ||
<!-- 开发者信息 --> | ||
<developer> | ||
<id>leojie</id> | ||
<name>leojie</name> | ||
<url>https://www.jielongping.com</url> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>Developer</role> | ||
</roles> | ||
<organization>bigdata</organization> | ||
<timezone>+8</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<!-- 依赖声明 --> | ||
<dependencyManagement> | ||
<dependencies> | ||
|
@@ -232,6 +261,8 @@ | |
<module>hbase-manager-quartz</module> | ||
<module>hbase-manager-generator</module> | ||
<module>hbase-manager-common</module> | ||
<module>hbase-manager-hbase/hbase-manager-hbase-1.x</module> | ||
<module>hbase-manager-hbase/hbase-manager-hbase-2.x</module> | ||
</modules> | ||
|
||
<packaging>pom</packaging> | ||
|
@@ -246,11 +277,34 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.1</version> | ||
<version>3.5.1</version> | ||
<configuration> | ||
<source>${java.version}</source> | ||
<target>${java.version}</target> | ||
<compilerVersion>${java.version}</compilerVersion> | ||
<encoding>${project.build.sourceEncoding}</encoding> | ||
<optimize>true</optimize> | ||
<maxmem>1024m</maxmem> | ||
<fork>true</fork> | ||
<compilerArgs> | ||
<arg>-Xlint:all,-serial,-path</arg> | ||
</compilerArgs> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<phase>compile</phase> | ||
<goals> | ||
<goal>compile</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>versions-maven-plugin</artifactId> | ||
<version>2.3</version> | ||
<configuration> | ||
<generateBackupPoms>false</generateBackupPoms> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
|
@@ -281,18 +335,6 @@ | |
</pluginRepository> | ||
</pluginRepositories> | ||
|
||
<developers> | ||
<developer> | ||
<name>leojie</name> | ||
<id>leojie</id> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>Developer</role> | ||
</roles> | ||
<timezone>+8</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<profiles> | ||
<profile> | ||
<id>hbase1.x</id> | ||
|