Skip to content

Commit

Permalink
release 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
shihuili1218 committed Feb 21, 2023
1 parent 8fbec58 commit e59f88e
Show file tree
Hide file tree
Showing 18 changed files with 35 additions and 35 deletions.
4 changes: 2 additions & 2 deletions klein-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>klein</artifactId>
<groupId>com.ofcoder.klein</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.common</groupId>
<artifactId>klein-common</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions klein-consensus/klein-consensus-facade/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>klein-consensus</artifactId>
<groupId>com.ofcoder.klein.consensus</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.consensus.facade</groupId>
<artifactId>klein-consensus-facade</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
*/
public class PaxosProp {
private int masterHeartbeatTimeout = SystemPropertyUtil.getInt("klein.consensus.paxos.master.heartbeat-timeout", 50);
private int masterHeartbeatInterval = SystemPropertyUtil.getInt("klein.consensus.paxos.master.heartbeat-interval", 1000);
private int masterElectMinInterval = SystemPropertyUtil.getInt("klein.consensus.paxos.master.elect-min-interval", masterHeartbeatInterval * 3);
private int masterHeartbeatInterval = SystemPropertyUtil.getInt("klein.consensus.paxos.master.heartbeat-interval", 5000);
private int masterElectMinInterval = SystemPropertyUtil.getInt("klein.consensus.paxos.master.elect-min-interval", masterHeartbeatInterval * 2);
private int masterElectMaxInterval = SystemPropertyUtil.getInt("klein.consensus.paxos.master.elect-max-interval", masterElectMinInterval + masterHeartbeatInterval * 3);
private boolean write = SystemPropertyUtil.getBoolean("klein.consensus.paxos.write", true);

Expand Down
4 changes: 2 additions & 2 deletions klein-consensus/klein-consensus-paxos/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>klein-consensus</artifactId>
<groupId>com.ofcoder.klein.consensus</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.consensus.paxos</groupId>
<artifactId>klein-consensus-paxos</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions klein-consensus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<parent>
<artifactId>klein</artifactId>
<groupId>com.ofcoder.klein</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.consensus</groupId>
<artifactId>klein-consensus</artifactId>
<packaging>pom</packaging>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>

<modules>
<module>klein-consensus-paxos</module>
Expand Down
4 changes: 2 additions & 2 deletions klein-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>klein</artifactId>
<groupId>com.ofcoder.klein</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.core</groupId>
<artifactId>klein-core</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions klein-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>klein</artifactId>
<groupId>com.ofcoder.klein</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.example</groupId>
<artifactId>klein-example</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions klein-jepsen/klein-jepsen-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>klein-jepsen</artifactId>
<groupId>com.ofcoder.klein.jepsen</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.jepsen.server</groupId>
<artifactId>klein-jepsen-server</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions klein-jepsen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>klein</artifactId>
<groupId>com.ofcoder.klein</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.jepsen</groupId>
<artifactId>klein-jepsen</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>pom</packaging>
<modules>
<module>klein-jepsen-server</module>
Expand Down
4 changes: 2 additions & 2 deletions klein-rpc/klein-rpc-facade/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>klein-rpc</artifactId>
<groupId>com.ofcoder.klein.rpc</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.rpc.facade</groupId>
<artifactId>klein-rpc-facade</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions klein-rpc/klein-rpc-grpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>klein-rpc</artifactId>
<groupId>com.ofcoder.klein.rpc</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.rpc.grpc</groupId>
<artifactId>klein-rpc-grpc</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions klein-rpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<parent>
<artifactId>klein</artifactId>
<groupId>com.ofcoder.klein</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.rpc</groupId>
<artifactId>klein-rpc</artifactId>
<packaging>pom</packaging>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>

<modules>
<module>klein-rpc-grpc</module>
Expand Down
4 changes: 2 additions & 2 deletions klein-spi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>klein</artifactId>
<groupId>com.ofcoder.klein</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.spi</groupId>
<artifactId>klein-spi</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions klein-storage/klein-storage-facade/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>klein-storage</artifactId>
<groupId>com.ofcoder.klein.storage</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.storage.api</groupId>
<artifactId>klein-storage-facade</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions klein-storage/klein-storage-file/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>klein-storage</artifactId>
<groupId>com.ofcoder.klein.storage</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.storage.file</groupId>
<artifactId>klein-storage-file</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions klein-storage/klein-storage-h2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>klein-storage</artifactId>
<groupId>com.ofcoder.klein.storage</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.storage.h2</groupId>
<artifactId>klein-storage-h2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions klein-storage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<parent>
<artifactId>klein</artifactId>
<groupId>com.ofcoder.klein</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.ofcoder.klein.storage</groupId>
<artifactId>klein-storage</artifactId>
<packaging>pom</packaging>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>

<modules>
<module>klein-storage-facade</module>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.ofcoder.klein</groupId>
<artifactId>klein</artifactId>
<packaging>pom</packaging>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>

<name>${project.groupId}:${project.artifactId}</name>

Expand Down

0 comments on commit e59f88e

Please sign in to comment.