Skip to content

Commit

Permalink
Release v1.3.0
Browse files Browse the repository at this point in the history
- 依存ライブラリは、Maven Central Repository に登録するのは時間がかかりそうなので、いったんSNAPSHOTから取得
  • Loading branch information
koda-masaru committed Apr 3, 2016
1 parent 07029c8 commit 2103a05
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.support-project</groupId>
<artifactId>knowledge</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
<packaging>war</packaging>

<name>knowledge</name>
Expand Down Expand Up @@ -54,7 +54,7 @@
</snapshots>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.support-project</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ private void notify(Notify notify) {
Thread t = new Thread(new Runnable() {
@Override
public void run() {
LOG.info("start notify");
LOG.debug("start notify");
NotifyAction notifyAction = Container.getComp(NotifyAction.class);
notifyAction.notifyObservers(notify);
LOG.info("end notify");
LOG.debug("end notify");
}
});
t.setDaemon(true);
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/appresource.properties
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ message.allready.started=Allready started.
message.confirm.delete=Are you sure you want to delete?

# Common Label
label.version=v1.2.1
label.version=v1.3.0
label.login=Sign in
label.previous = Previous
label.next=Next
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/appresource_ja.properties
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ message.allready.started=すでに開始済です
message.confirm.delete=本当に削除しますか?

# Common Label
label.version=v1.2.1
label.version=v1.3.0
label.login=サインイン
label.previous = 前へ
label.next = 次へ
Expand Down

0 comments on commit 2103a05

Please sign in to comment.