Skip to content

Commit

Permalink
upgrade to 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Nov 30, 2016
1 parent 73b94cc commit c874953
Show file tree
Hide file tree
Showing 21 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion elastic-job-cloud/elastic-job-cloud-executor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>elastic-job-cloud</artifactId>
<groupId>com.dangdang</groupId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>elastic-job-cloud-executor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion elastic-job-cloud/elastic-job-cloud-scheduler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>elastic-job-cloud</artifactId>
<groupId>com.dangdang</groupId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>elastic-job-cloud-scheduler</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion elastic-job-cloud/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>elastic-job</artifactId>
<groupId>com.dangdang</groupId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<packaging>pom</packaging>
<artifactId>elastic-job-cloud</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion elastic-job-common/elastic-job-common-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.dangdang</groupId>
<artifactId>elastic-job-common</artifactId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<artifactId>elastic-job-common-core</artifactId>
<name>${project.artifactId}</name>
Expand Down
2 changes: 1 addition & 1 deletion elastic-job-common/elastic-job-common-restful/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>elastic-job-common</artifactId>
<groupId>com.dangdang</groupId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>elastic-job-common-restful</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion elastic-job-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>elastic-job</artifactId>
<groupId>com.dangdang</groupId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<packaging>pom</packaging>
<artifactId>elastic-job-common</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion elastic-job-doc/content/post/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ weight=1

# Release Notes

## 2.0.3-SNAPSHOT
## 2.0.3

### 缺陷修正

Expand Down
2 changes: 1 addition & 1 deletion elastic-job-example/elastic-job-example-cloud/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>elastic-job-example</artifactId>
<groupId>com.dangdang</groupId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>elastic-job-example-cloud</artifactId>
Expand Down
8 changes: 4 additions & 4 deletions elastic-job-example/elastic-job-example-cloud/src/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,18 @@ curl -l -H "Content-type: application/json" -X DELETE -d 'foo_job' http://elasti
1. Java启动方式作业注册:

curl -l -H "Content-type: application/json" -X POST -d '{"jobName":"test_job_simple","jobType":"SIMPLE","jobClass":"com.dangdang.ddframe.job.example.job.simple.JavaSimpleJob","cron":"0/10 * * * * ?","shardingTotalCount":3,"cpuCount":0.1,"memoryMB":64.0,"jobExecutionType":"TRANSIENT",
"appURL":"http://localhost:8080/elastic-job-example-cloud-2.0.3-SNAPSHOT.tar.gz","failover":false,"misfire":true,"jobParameter":"java_simple","bootstrapScript":"bin/start.sh"}' http://localhost:8899/job/register
"appURL":"http://localhost:8080/elastic-job-example-cloud-2.0.3.tar.gz","failover":false,"misfire":true,"jobParameter":"java_simple","bootstrapScript":"bin/start.sh"}' http://localhost:8899/job/register

curl -l -H "Content-type: application/json" -X POST -d '{"jobName":"test_job_dataflow","jobType":"DATAFLOW","jobClass":"com.dangdang.ddframe.job.example.job.dataflow.JavaDataflowJob","cron":"0/10 * * * * ?","shardingTotalCount":3,"cpuCount":0.1,"memoryMB":64.0,"jobExecutionType":"TRANSIENT",
"appURL":"http://localhost:8080/elastic-job-example-cloud-2.0.3-SNAPSHOT.tar.gz","failover":false,"misfire":true,"jobParameter":"java_dataflow","bootstrapScript":"bin/start.sh"}' http://localhost:8899/job/register
"appURL":"http://localhost:8080/elastic-job-example-cloud-2.0.3.tar.gz","failover":false,"misfire":true,"jobParameter":"java_dataflow","bootstrapScript":"bin/start.sh"}' http://localhost:8899/job/register

curl -l -H "Content-type: application/json" -X POST -d '{"jobName":"test_job_script","jobType":"SCRIPT","cron":"0/10 * * * * ?","shardingTotalCount":3,"cpuCount":0.1,"memoryMB":64.0,"jobExecutionType":"TRANSIENT",
"appURL":"http://localhost:8080/demo.sh","failover":false,"misfire":true,"jobParameter":"script","bootstrapScript":"./demo.sh"}' http://localhost:8899/job/register

2. Spring启动方式作业注册:

curl -l -H "Content-type: application/json" -X POST -d '{"jobName":"test_job_simple_spring","jobType":"SIMPLE","jobClass":"com.dangdang.ddframe.job.example.job.simple.SpringSimpleJob","beanName":"springSimpleJob","applicationContext":"classpath:META-INF/applicationContext.xml","cron":"0/10 * * * * ?","shardingTotalCount":3,"cpuCount":0.1,"memoryMB":64.0,"jobExecutionType":"TRANSIENT",
"appURL":"http://localhost:8080/elastic-job-example-cloud-2.0.3-SNAPSHOT.tar.gz","failover":false,"misfire":true,"jobParameter":"java_simple","bootstrapScript":"bin/start.sh"}' http://localhost:8899/job/register
"appURL":"http://localhost:8080/elastic-job-example-cloud-2.0.3.tar.gz","failover":false,"misfire":true,"jobParameter":"java_simple","bootstrapScript":"bin/start.sh"}' http://localhost:8899/job/register

curl -l -H "Content-type: application/json" -X POST -d '{"jobName":"test_job_dataflow_spring","jobType":"DATAFLOW","jobClass":"com.dangdang.ddframe.job.example.job.dataflow.SpringDataflowJob","beanName":"springDataflowJob","applicationContext":"classpath:META-INF/applicationContext.xml","cron":"0/10 * * * * ?","shardingTotalCount":3,"cpuCount":0.1,"memoryMB":64.0,"jobExecutionType":"TRANSIENT",
"appURL":"http://localhost:8080/elastic-job-example-cloud-2.0.3-SNAPSHOT.tar.gz","failover":false,"misfire":true,"jobParameter":"java_simple","bootstrapScript":"bin/start.sh"}' http://localhost:8899/job/register
"appURL":"http://localhost:8080/elastic-job-example-cloud-2.0.3.tar.gz","failover":false,"misfire":true,"jobParameter":"java_simple","bootstrapScript":"bin/start.sh"}' http://localhost:8899/job/register
2 changes: 1 addition & 1 deletion elastic-job-example/elastic-job-example-embed-zk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>elastic-job-example</artifactId>
<groupId>com.dangdang</groupId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>elastic-job-example-embed-zk</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion elastic-job-example/elastic-job-example-jobs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<artifactId>elastic-job-example</artifactId>
<groupId>com.dangdang</groupId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>elastic-job-example-jobs</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion elastic-job-example/elastic-job-example-lite-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>elastic-job-example</artifactId>
<groupId>com.dangdang</groupId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>elastic-job-example-lite-java</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>elastic-job-example</artifactId>
<groupId>com.dangdang</groupId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>elastic-job-example-lite-spring</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>elastic-job-example</artifactId>
<groupId>com.dangdang</groupId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions elastic-job-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>com.dangdang</groupId>
<name>${project.artifactId}</name>
<packaging>pom</packaging>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>

<modules>
<module>elastic-job-example-jobs</module>
Expand All @@ -20,7 +20,7 @@

<properties>
<java.version>1.7</java.version>
<elastic-job.version>2.0.3-SNAPSHOT</elastic-job.version>
<elastic-job.version>2.0.3</elastic-job.version>
<curator.version>2.10.0</curator.version>
<springframework.version>4.3.4.RELEASE</springframework.version>
<slf4j.version>1.7.7</slf4j.version>
Expand Down
2 changes: 1 addition & 1 deletion elastic-job-lite/elastic-job-lite-console/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.dangdang</groupId>
<artifactId>elastic-job-lite</artifactId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<artifactId>elastic-job-lite-console</artifactId>
<packaging>war</packaging>
Expand Down
2 changes: 1 addition & 1 deletion elastic-job-lite/elastic-job-lite-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.dangdang</groupId>
<artifactId>elastic-job-lite</artifactId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<artifactId>elastic-job-lite-core</artifactId>
<name>${project.artifactId}</name>
Expand Down
2 changes: 1 addition & 1 deletion elastic-job-lite/elastic-job-lite-lifecycle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>elastic-job-lite</artifactId>
<groupId>com.dangdang</groupId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<artifactId>elastic-job-lite-lifecycle</artifactId>
<name>${project.artifactId}</name>
Expand Down
2 changes: 1 addition & 1 deletion elastic-job-lite/elastic-job-lite-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.dangdang</groupId>
<artifactId>elastic-job-lite</artifactId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<artifactId>elastic-job-lite-spring</artifactId>
<name>${project.artifactId}</name>
Expand Down
2 changes: 1 addition & 1 deletion elastic-job-lite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>elastic-job</artifactId>
<groupId>com.dangdang</groupId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
</parent>
<packaging>pom</packaging>
<artifactId>elastic-job-lite</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.dangdang</groupId>
<artifactId>elastic-job</artifactId>
<version>2.0.3-SNAPSHOT</version>
<version>2.0.3</version>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>Elastic-Job - distributed scheduled job solution</description>
Expand Down

0 comments on commit c874953

Please sign in to comment.