Skip to content
This repository was archived by the owner on Jan 30, 2021. It is now read-only.

Commit 0210589

Browse files
committed
Changed version string from 1.10 to 1.11
1 parent f1cd294 commit 0210589

29 files changed

Lines changed: 167 additions & 158 deletions

File tree

.github/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ReformCloud 1.10
1+
# ReformCloud 1.11
22

33
Official Cloud System
44

@@ -14,7 +14,8 @@ Official Cloud System
1414
![STARS](https://img.shields.io/github/stars/reformcloudproject/reformcloud.svg)
1515
![CHAT](https://img.shields.io/discord/499666347337449472.svg)
1616

17-
> <b>IMPORTANT NOTE:</b> ReformCloud is still in development. No stable version is available. The Full System is in beta support
17+
> <b>IMPORTANT NOTE:</b> ReformCloud is still in development. The current
18+
releases are only pre-stable releases.
1819

1920
### Prerequisites
2021

pom.xml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -6,44 +6,17 @@
66

77
<groupId>systems.reformcloud</groupId>
88
<artifactId>reformcloud-parent</artifactId>
9-
<version>1.10</version>
10-
11-
<modules>
12-
<module>reformcloud-library</module>
13-
<module>reformcloud-global</module>
14-
<module>reformcloud-addons</module>
15-
<module>reformcloud-common</module>
16-
<module>reformcloud-pre-loader</module>
17-
</modules>
18-
<packaging>pom</packaging>
19-
20-
<developers>
21-
<developer>
22-
<id>klaro</id>
23-
<name>Pasqual K. | _Klaro</name>
24-
<organization>ReformCloud</organization>
25-
<url>https://github.com/KlaroYT</url>
26-
<organizationUrl>https://reformcloud.systems</organizationUrl>
27-
<email>info@reformcloud.systems</email>
28-
<timezone>Europe/Berlin</timezone>
29-
<roles>
30-
<role>owner</role>
31-
<role>developer</role>
32-
</roles>
33-
</developer>
34-
</developers>
35-
369
<properties>
3710
<maven.compiler.source>1.8</maven.compiler.source>
3811
<maven.compiler.target>1.8</maven.compiler.target>
3912

4013
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4114
<project.build.targetEncoding>UTF-8</project.build.targetEncoding>
4215

43-
<service.version>1.10</service.version>
16+
<api.default.version>111PRESTABLE02061655</api.default.version>
4417
<service.type>PRE-STABLE</service.type>
4518

46-
<api.default.version>110PRESTABLE20042405</api.default.version>
19+
<service.version>1.11</service.version>
4720

4821
<plugin.shade.version>3.2.1</plugin.shade.version>
4922
<plugin.compiler.version>3.8.1</plugin.compiler.version>
@@ -66,6 +39,33 @@
6639
<dependency.commons-net.version>3.6</dependency.commons-net.version>
6740
</properties>
6841

42+
<modules>
43+
<module>reformcloud-library</module>
44+
<module>reformcloud-global</module>
45+
<module>reformcloud-addons</module>
46+
<module>reformcloud-common</module>
47+
<module>reformcloud-pre-loader</module>
48+
</modules>
49+
<packaging>pom</packaging>
50+
51+
<developers>
52+
<developer>
53+
<id>klaro</id>
54+
<name>Pasqual K. | _Klaro</name>
55+
<organization>ReformCloud</organization>
56+
<url>https://github.com/KlaroYT</url>
57+
<organizationUrl>https://reformcloud.systems</organizationUrl>
58+
<email>info@reformcloud.systems</email>
59+
<timezone>Europe/Berlin</timezone>
60+
<roles>
61+
<role>owner</role>
62+
<role>developer</role>
63+
</roles>
64+
</developer>
65+
</developers>
66+
67+
<version>1.11</version>
68+
6969
<build>
7070
<defaultGoal>clean install</defaultGoal>
7171
<plugins>

reformcloud-addons/pom.xml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,19 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<parent>
6-
<artifactId>reformcloud-parent</artifactId>
7-
<groupId>systems.reformcloud</groupId>
8-
<version>1.10</version>
9-
</parent>
5+
<dependencies>
6+
<dependency>
7+
<groupId>systems.reformcloud</groupId>
8+
<artifactId>reformcloud-controller</artifactId>
9+
<version>1.11</version>
10+
</dependency>
11+
<dependency>
12+
<groupId>com.google.code.gson</groupId>
13+
<artifactId>gson</artifactId>
14+
<version>2.8.5</version>
15+
<scope>provided</scope>
16+
</dependency>
17+
</dependencies>
1018
<modelVersion>4.0.0</modelVersion>
1119

1220
<artifactId>reformcloud-addons</artifactId>
@@ -24,17 +32,9 @@
2432
<module>reformcloud-addons-backup</module>
2533
</modules>
2634

27-
<dependencies>
28-
<dependency>
29-
<groupId>systems.reformcloud</groupId>
30-
<artifactId>reformcloud-controller</artifactId>
31-
<version>1.10</version>
32-
</dependency>
33-
<dependency>
34-
<groupId>com.google.code.gson</groupId>
35-
<artifactId>gson</artifactId>
36-
<version>2.8.5</version>
37-
<scope>provided</scope>
38-
</dependency>
39-
</dependencies>
35+
<parent>
36+
<artifactId>reformcloud-parent</artifactId>
37+
<groupId>systems.reformcloud</groupId>
38+
<version>1.11</version>
39+
</parent>
4040
</project>

reformcloud-addons/reformcloud-addons-autoicon/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>reformcloud-addons</artifactId>
77
<groupId>systems.reformcloud</groupId>
8-
<version>1.10</version>
8+
<version>1.11</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

reformcloud-addons/reformcloud-addons-backup/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>reformcloud-addons</artifactId>
77
<groupId>systems.reformcloud</groupId>
8-
<version>1.10</version>
8+
<version>1.11</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

reformcloud-addons/reformcloud-addons-cloudflare/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>reformcloud-addons</artifactId>
77
<groupId>systems.reformcloud</groupId>
8-
<version>1.10</version>
8+
<version>1.11</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

reformcloud-addons/reformcloud-addons-discordbot/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>reformcloud-addons</artifactId>
77
<groupId>systems.reformcloud</groupId>
8-
<version>1.10</version>
8+
<version>1.11</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

reformcloud-addons/reformcloud-addons-mobs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>reformcloud-addons</artifactId>
77
<groupId>systems.reformcloud</groupId>
8-
<version>1.10</version>
8+
<version>1.11</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

reformcloud-addons/reformcloud-addons-parameters/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>reformcloud-addons</artifactId>
77
<groupId>systems.reformcloud</groupId>
8-
<version>1.10</version>
8+
<version>1.11</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

reformcloud-addons/reformcloud-addons-permissions/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>reformcloud-addons</artifactId>
77
<groupId>systems.reformcloud</groupId>
8-
<version>1.10</version>
8+
<version>1.11</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

0 commit comments

Comments
 (0)