Skip to content

Commit ecb8459

Browse files
committed
Bump versions
1 parent 8e11502 commit ecb8459

File tree

4 files changed

+73
-44
lines changed

4 files changed

+73
-44
lines changed

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<!-- Dependencies -->
1616
<vk.java.sdk.version>1.0.9</vk.java.sdk.version>
17-
<log4j.version>2.15.0</log4j.version>
17+
<log4j.version>2.19.0</log4j.version>
1818
</properties>
1919

2020
<dependencies>

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<java.version>8</java.version>
2121

2222
<!-- Dependencies -->
23-
<core.version>0.4.0</core.version>
23+
<core.version>0.4.1</core.version>
2424

2525
<!-- Maven plugins -->
2626
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
@@ -53,6 +53,7 @@
5353
<compilerArgs>
5454
<arg>-Xlint:deprecation</arg>
5555
<arg>-Xlint:unchecked</arg>
56+
<arg>-proc:none</arg>
5657
</compilerArgs>
5758
<source>${java.version}</source>
5859
<target>${java.version}</target>

velocity/pom.xml

Lines changed: 69 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,76 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0"
2-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4-
<parent>
5-
<groupId>com.ubivashka</groupId>
6-
<artifactId>vk-api.parent</artifactId>
7-
<version>0.4.1</version>
8-
</parent>
9-
<modelVersion>4.0.0</modelVersion>
10-
<artifactId>vk-api.velocity</artifactId>
11-
<packaging>jar</packaging>
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<parent>
5+
<groupId>com.ubivashka</groupId>
6+
<artifactId>vk-api.parent</artifactId>
7+
<version>0.4.1</version>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
<artifactId>vk-api.velocity</artifactId>
11+
<packaging>jar</packaging>
1212

13-
<properties>
14-
<project.file.name>VK-API-Velocity</project.file.name>
13+
<properties>
14+
<project.file.name>VK-API-Velocity</project.file.name>
1515

16-
<!-- Dependencies -->
17-
<velocity-api.vesion>3.0.1</velocity-api.vesion>
18-
</properties>
16+
<!-- Dependencies -->
17+
<velocity-api.version>3.1.1</velocity-api.version>
18+
</properties>
1919

20-
<repositories>
21-
<repository>
22-
<id>jitpack.io</id>
23-
<url>https://jitpack.io</url>
24-
</repository>
25-
<repository>
26-
<id>velocity</id>
27-
<url>https://repo.velocitypowered.com/snapshots/</url>
28-
</repository>
29-
</repositories>
20+
<repositories>
21+
<repository>
22+
<id>jitpack.io</id>
23+
<url>https://jitpack.io</url>
24+
</repository>
25+
<repository>
26+
<id>velocity</id>
27+
<url>https://repo.velocitypowered.com/snapshots/</url>
28+
</repository>
29+
<repository>
30+
<id>papermc</id>
31+
<url>https://repo.papermc.io/repository/maven-public/</url>
32+
</repository>
33+
</repositories>
3034

31-
<dependencies>
32-
<!-- Core -->
33-
<dependency>
34-
<groupId>com.ubivashka</groupId>
35-
<artifactId>vk-api.core</artifactId>
36-
<version>${core.version}</version>
37-
<scope>compile</scope>
38-
</dependency>
35+
<dependencies>
36+
<!-- Core -->
37+
<dependency>
38+
<groupId>com.ubivashka</groupId>
39+
<artifactId>vk-api.core</artifactId>
40+
<version>${core.version}</version>
41+
<scope>compile</scope>
42+
</dependency>
3943

40-
<!-- Velocity API -->
41-
<dependency>
42-
<groupId>com.velocitypowered</groupId>
43-
<artifactId>velocity-api</artifactId>
44-
<version>${velocity-api.vesion}</version>
45-
<scope>provided</scope>
46-
</dependency>
47-
</dependencies>
44+
<!-- Velocity API -->
45+
<dependency>
46+
<groupId>com.velocitypowered</groupId>
47+
<artifactId>velocity-api</artifactId>
48+
<version>${velocity-api.version}</version>
49+
<scope>provided</scope>
50+
</dependency>
51+
</dependencies>
52+
<build>
53+
<plugins>
54+
<plugin>
55+
<groupId>org.apache.maven.plugins</groupId>
56+
<artifactId>maven-compiler-plugin</artifactId>
57+
<version>${maven.compiler.plugin.version}</version>
58+
<configuration>
59+
<compilerArgs>
60+
<arg>-Xlint:deprecation</arg>
61+
<arg>-Xlint:unchecked</arg>
62+
</compilerArgs>
63+
<source>${java.version}</source>
64+
<target>${java.version}</target>
65+
<annotationProcessorPaths>
66+
<annotationProcessorPath>
67+
<groupId>com.velocitypowered</groupId>
68+
<artifactId>velocity-api</artifactId>
69+
<version>${velocity-api.version}</version>
70+
</annotationProcessorPath>
71+
</annotationProcessorPaths>
72+
</configuration>
73+
</plugin>
74+
</plugins>
75+
</build>
4876
</project>

velocity/src/main/java/com/ubivashka/vk/velocity/VelocityVkApiPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import com.velocitypowered.api.plugin.annotation.DataDirectory;
1919
import com.velocitypowered.api.proxy.ProxyServer;
2020

21-
@Plugin(id = "vk-api", name = "VK-API", version = "0.4.0", authors = "Ubivashka")
21+
@Plugin(id = "vk-api", name = "VK-API", version = "0.4.1", authors = "Ubivashka")
2222
public class VelocityVkApiPlugin implements VkApiPlugin {
2323

2424
private static VelocityVkApiPlugin instance;

0 commit comments

Comments
 (0)