Skip to content

Commit

Permalink
Merge pull request #197 from qq254963746/develop
Browse files Browse the repository at this point in the history
1.6.4 release
  • Loading branch information
qq254963746 committed Feb 23, 2016
2 parents 18b374e + 6382408 commit fa02e99
Show file tree
Hide file tree
Showing 19 changed files with 18 additions and 25 deletions.
2 changes: 1 addition & 1 deletion build.cmd
Expand Up @@ -4,7 +4,7 @@ start mvn clean install -DskipTests
echo "LTS: mvn clean install -DskipTests"
echo "LTS: After sub window finished, close it , and press any key to continue" & pause>nul

set VERSION=1.6.4-SNAPSHOT
set VERSION=1.6.4
set BASE_HOME=%~dp0%
set DIST_BIN_DIR=lts-%VERSION%-bin

Expand Down
2 changes: 1 addition & 1 deletion build.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

VERSION="1.6.4-SNAPSHOT"
VERSION="1.6.4"

LTS_BIN="${BASH_SOURCE-$0}"
LTS_BIN="$(dirname "${LTS_BIN}")"
Expand Down
2 changes: 1 addition & 1 deletion lts-admin/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lts-parent</artifactId>
<groupId>com.lts</groupId>
<version>1.6.4-SNAPSHOT</version>
<version>1.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>war</packaging>
Expand Down
2 changes: 1 addition & 1 deletion lts-core/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lts-parent</artifactId>
<groupId>com.lts</groupId>
<version>1.6.4-SNAPSHOT</version>
<version>1.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion lts-core/src/main/java/com/lts/core/support/Version.java
Expand Up @@ -20,7 +20,7 @@ private Version() {}

private static final Logger LOGGER = LoggerFactory.getLogger(Version.class);

private static final String VERSION = getVersion(Version.class, "1.6.4-SNAPSHOT");
private static final String VERSION = getVersion(Version.class, "1.6.4");

static {
// 检查是否存在重复的jar包
Expand Down
2 changes: 1 addition & 1 deletion lts-example/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lts-parent</artifactId>
<groupId>com.lts</groupId>
<version>1.6.4-SNAPSHOT</version>
<version>1.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>lts-example</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion lts-jobclient/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lts-parent</artifactId>
<groupId>com.lts</groupId>
<version>1.6.4-SNAPSHOT</version>
<version>1.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion lts-jobtracker/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lts-parent</artifactId>
<groupId>com.lts</groupId>
<version>1.6.4-SNAPSHOT</version>
<version>1.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Expand Up @@ -44,8 +44,6 @@ public Set<String> getNodeGroups() {

/**
* 添加节点
*
* @param node
*/
public void addNode(Node node) {
// channel 可能为 null
Expand All @@ -71,8 +69,6 @@ public void addNode(Node node) {

/**
* 删除节点
*
* @param node
*/
public void removeNode(Node node) {
Set<JobClientNode> jobClientNodes = NODE_MAP.get(node.getGroup());
Expand All @@ -88,9 +84,6 @@ public void removeNode(Node node) {

/**
* 得到 可用的 客户端节点
*
* @param nodeGroup
* @return
*/
public JobClientNode getAvailableJobClient(String nodeGroup) {

Expand Down
2 changes: 1 addition & 1 deletion lts-logger/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lts-parent</artifactId>
<groupId>com.lts</groupId>
<version>1.6.4-SNAPSHOT</version>
<version>1.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion lts-queue/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lts-parent</artifactId>
<groupId>com.lts</groupId>
<version>1.6.4-SNAPSHOT</version>
<version>1.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion lts-spring/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lts-parent</artifactId>
<groupId>com.lts</groupId>
<version>1.6.4-SNAPSHOT</version>
<version>1.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion lts-startup/lts-startup-admin/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lts-startup</artifactId>
<groupId>com.lts</groupId>
<version>1.6.4-SNAPSHOT</version>
<version>1.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion lts-startup/lts-startup-jobtracker/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lts-startup</artifactId>
<groupId>com.lts</groupId>
<version>1.6.4-SNAPSHOT</version>
<version>1.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion lts-startup/lts-startup-tasktracker/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lts-startup</artifactId>
<groupId>com.lts</groupId>
<version>1.6.4-SNAPSHOT</version>
<version>1.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion lts-startup/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lts-parent</artifactId>
<groupId>com.lts</groupId>
<version>1.6.4-SNAPSHOT</version>
<version>1.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion lts-tasktracker/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lts-parent</artifactId>
<groupId>com.lts</groupId>
<version>1.6.4-SNAPSHOT</version>
<version>1.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion lts/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lts-parent</artifactId>
<groupId>com.lts</groupId>
<version>1.6.4-SNAPSHOT</version>
<version>1.6.4</version>
</parent>
<packaging>jar</packaging>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -7,7 +7,7 @@
<groupId>com.lts</groupId>
<artifactId>lts-parent</artifactId>
<packaging>pom</packaging>
<version>1.6.4-SNAPSHOT</version>
<version>1.6.4</version>
<url>https://github.com/qq254963746/light-task-scheduler.git</url>
<modules>
<module>lts-core</module>
Expand Down

0 comments on commit fa02e99

Please sign in to comment.