Skip to content

Commit 9ae1478

Browse files
committed
Update dependencies.
1 parent 7b5da17 commit 9ae1478

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

  • examples/config-values-example-bukkit/src/main/java/community/leaf/examples/configvalues/bukkit

examples/config-values-example-bukkit/src/main/java/community/leaf/examples/configvalues/bukkit/Config.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ public class Config extends YamlDataFile
3030
YamlValue.ofString("messages.example").example("I only get set once!");
3131

3232
@AggregatedResult
33-
private static final List<YamlValue<?>> VALUES = Aggregates.list(Config.class, YamlValue.type());
33+
private static final List<YamlValue<?>> VALUES =
34+
Aggregates.fromThisClass().constantsOfType(YamlValue.type()).toList();
3435

3536
public Config(ExampleConfigPlugin plugin)
3637
{

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<licenses>
1717
<license>
1818
<name>Mozilla Public License Version 2.0</name>
19-
<url>http://mozilla.org/MPL/2.0</url>
19+
<url>https://mozilla.org/MPL/2.0</url>
2020
</license>
2121
</licenses>
2222

@@ -30,7 +30,7 @@
3030
<scm>
3131
<connection>scm:git:git://github.com/LeafCommunity/ConfigValues.git</connection>
3232
<developerConnection>scm:git:ssh://github.com:LeafCommunity/ConfigValues.git</developerConnection>
33-
<url>http://github.com/LeafCommunity/ConfigValues</url>
33+
<url>https://github.com/LeafCommunity/ConfigValues</url>
3434
</scm>
3535

3636
<issueManagement>
@@ -79,7 +79,7 @@
7979
<dependency>
8080
<groupId>com.rezzedup.util</groupId>
8181
<artifactId>constants</artifactId>
82-
<version>0.1.0</version>
82+
<version>0.2.1</version>
8383
</dependency>
8484
<!-- Valuables (via maven-central) -->
8585
<dependency>

0 commit comments

Comments
 (0)