Skip to content

Commit a7acbef

Browse files
committed
Rename granite-cluster-node to granite-cluster-nodes.
1 parent 999e3f0 commit a7acbef

File tree

80 files changed

+207
-206
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+207
-206
lines changed

cluster/cluster-debug/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
<artifactId>granite-pack-cluster-mgtnode</artifactId>
2323
</dependency>
2424
<dependency>
25-
<groupId>com.thefirstlineofcode.granite.cluster.node</groupId>
26-
<artifactId>granite-cluster-node-mgtnode</artifactId>
25+
<groupId>com.thefirstlineofcode.granite.cluster.nodes</groupId>
26+
<artifactId>granite-cluster-nodes-mgtnode</artifactId>
2727
</dependency>
2828
<dependency>
29-
<groupId>com.thefirstlineofcode.granite.cluster.node</groupId>
30-
<artifactId>granite-cluster-node-appnode</artifactId>
29+
<groupId>com.thefirstlineofcode.granite.cluster.nodes</groupId>
30+
<artifactId>granite-cluster-nodes-appnode</artifactId>
3131
</dependency>
3232
<dependency>
3333
<groupId>com.thefirstlineofcode.granite</groupId>

cluster/node/mgtnode/src/main/java/com/thefirstlineofcode/granite/cluster/node/mgtnode/deploying/pack/IAppnodeRuntimesPacker.java

Lines changed: 0 additions & 7 deletions
This file was deleted.

cluster/node/mgtnode/src/main/java/com/thefirstlineofcode/granite/cluster/node/mgtnode/deploying/pack/IPackConfigurator.java

Lines changed: 0 additions & 7 deletions
This file was deleted.

cluster/node/mgtnode/src/main/java/com/thefirstlineofcode/granite/cluster/node/mgtnode/deploying/pack/modules/ProtocolBxmppConfigurator.java

Lines changed: 0 additions & 19 deletions
This file was deleted.
File renamed without changes.

cluster/node/appnode/configuration/java_util_logging.ini renamed to cluster/nodes/appnode/configuration/java_util_logging.ini

File renamed without changes.
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@
77

88
<parent>
99
<groupId>com.thefirstlineofcode.granite.cluster</groupId>
10-
<artifactId>granite-cluster-node</artifactId>
10+
<artifactId>granite-cluster-nodes</artifactId>
1111
<version>1.0.5-RELEASE</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

15-
<groupId>com.thefirstlineofcode.granite.cluster.node</groupId>
16-
<artifactId>granite-cluster-node-appnode</artifactId>
15+
<groupId>com.thefirstlineofcode.granite.cluster.nodes</groupId>
16+
<artifactId>granite-cluster-nodes-appnode</artifactId>
1717
<name>Granite deploy cluster appnode implementation</name>
1818

1919
<dependencies>
2020
<dependency>
21-
<groupId>com.thefirstlineofcode.granite.cluster.node</groupId>
22-
<artifactId>granite-cluster-node-commons</artifactId>
21+
<groupId>com.thefirstlineofcode.granite.cluster.nodes</groupId>
22+
<artifactId>granite-cluster-nodes-commons</artifactId>
2323
</dependency>
2424
<dependency>
2525
<groupId>org.apache.ignite</groupId>
@@ -38,7 +38,7 @@
3838
<manifest>
3939
<addClasspath>true</addClasspath>
4040
<classpathPrefix>libs/</classpathPrefix>
41-
<mainClass>com.thefirstlineofcode.granite.cluster.node.appnode.Main</mainClass>
41+
<mainClass>com.thefirstlineofcode.granite.cluster.nodes.appnode.Main</mainClass>
4242
</manifest>
4343
</archive>
4444
</configuration>
File renamed without changes.

cluster/node/appnode/src/main/java/com/thefirstlineofcode/granite/cluster/node/appnode/Main.java renamed to cluster/nodes/appnode/src/main/java/com/thefirstlineofcode/granite/cluster/nodes/appnode/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thefirstlineofcode.granite.cluster.node.appnode;
1+
package com.thefirstlineofcode.granite.cluster.nodes.appnode;
22

33
public class Main {
44
public static void main(String[] args) {

cluster/node/appnode/src/main/java/com/thefirstlineofcode/granite/cluster/node/appnode/Options.java renamed to cluster/nodes/appnode/src/main/java/com/thefirstlineofcode/granite/cluster/nodes/appnode/Options.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package com.thefirstlineofcode.granite.cluster.node.appnode;
1+
package com.thefirstlineofcode.granite.cluster.nodes.appnode;
22

3-
import com.thefirstlineofcode.granite.cluster.node.commons.options.OptionsBase;
3+
import com.thefirstlineofcode.granite.cluster.nodes.commons.options.OptionsBase;
44

55
public class Options extends OptionsBase {
66
private String mgtnodeIp;

0 commit comments

Comments
 (0)