mirror of
https://github.com/funkemunky/AntiVPN.git
synced 2026-05-31 17:31:55 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8d46d25db1 | |||
| 89b20df703 | |||
| aa0dc4001a | |||
| 2e079079d7 | |||
|
8185c9aad0
|
|||
|
5f07b2393a
|
@@ -4,11 +4,6 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [1.10.1] - 2026-04-28
|
||||
|
||||
### Fixed
|
||||
- Startup error on velocity instances is now corrected.
|
||||
|
||||
## [1.10.0] - 2026-04-07
|
||||
|
||||
### Added
|
||||
|
||||
@@ -28,6 +28,11 @@ dependencies {
|
||||
|
||||
shadowJar {
|
||||
archiveClassifier.set('')
|
||||
|
||||
dependencies {
|
||||
exclude 'dev/brighten/antivpn/depends/Relocate*'
|
||||
exclude 'dev/brighten/antivpn/depends/MavenLibraries*'
|
||||
}
|
||||
}
|
||||
|
||||
tasks.build.dependsOn shadowJar
|
||||
|
||||
@@ -11,12 +11,6 @@ dependencies {
|
||||
implementation 'org.bstats:bstats-velocity:2.2.1'
|
||||
}
|
||||
|
||||
tasks.processResources {
|
||||
filesMatching('velocity-plugin.json') {
|
||||
expand(projectVersion: project.version)
|
||||
}
|
||||
}
|
||||
|
||||
shadowJar {
|
||||
archiveClassifier.set('')
|
||||
|
||||
@@ -34,7 +28,3 @@ tasks.named('shadowJar') {
|
||||
}
|
||||
|
||||
tasks.build.dependsOn shadowJar
|
||||
|
||||
jar {
|
||||
archiveClassifier.set('raw')
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
{"id":"kaurivpn","name":"KauriVPN","version":"${projectVersion}","authors":["funkemunky"],"dependencies":[],"main":"dev.brighten.antivpn.velocity.VelocityPluginLoader"}
|
||||
{"id":"kaurivpn","name":"KauriVPN","version":"${project.version}","authors":["funkemunky"],"dependencies":[],"main":"dev.brighten.antivpn.velocity.VelocityPluginLoader"}
|
||||
|
||||
+2
-5
@@ -13,7 +13,7 @@ def aggregateTestProjects = [
|
||||
|
||||
allprojects {
|
||||
group = 'dev.brighten.antivpn'
|
||||
version = '1.10.1.1'
|
||||
version = '1.10.1'
|
||||
|
||||
repositories {
|
||||
maven { url 'https://repo.papermc.io/repository/maven-public/' }
|
||||
@@ -76,6 +76,7 @@ evaluationDependsOn(':Bungee:BungeeLoader')
|
||||
|
||||
dependencies {
|
||||
implementation project(':Bukkit:Loader')
|
||||
implementation project(':Velocity:VelocityLoader')
|
||||
implementation project(':Bungee:BungeeLoader')
|
||||
}
|
||||
|
||||
@@ -86,10 +87,6 @@ shadowJar {
|
||||
from(project(':Common:Source').tasks.shadowJar) {
|
||||
rename { 'antivpn-source.jarinjar' }
|
||||
}
|
||||
|
||||
from({
|
||||
zipTree(project(':Velocity:VelocityLoader').tasks.shadowJar.archiveFile.get().asFile)
|
||||
})
|
||||
}
|
||||
|
||||
tasks.named('shadowJar') {
|
||||
|
||||
Reference in New Issue
Block a user