Skip to content

Commit

Permalink
chore(gradle): bump version to 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
danorris709 committed Aug 30, 2023
1 parent 746624b commit b31298e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 30 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ subprojects {
apply plugin: 'java'

group = 'com.envyful.better.dex.rewards'
version = '3.3.0'
version = '3.3.1'

ext {
forgeVersion = "none"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
)
public class BetterDexRewards {

protected static final String VERSION = "3.3.0";
protected static final String VERSION = "3.3.1";

private static BetterDexRewards instance;

Expand Down
2 changes: 1 addition & 1 deletion forge16/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ issueTrackerURL="https://github.com/EnvyWare/BetterDexRewards/issues"

[[mods]]
modId="betterdexrewards"
version="3.3.0"
version="3.3.1"
displayName="BetterDexRewards Forge"
displayURL="https://github.com/EnvyWare"
credits="https://github.com/EnvyWare"
Expand Down
31 changes: 5 additions & 26 deletions forge20/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,43 +56,22 @@ minecraft {

sourceSets.main.resources { srcDir 'src/generated/resources' }

repositories {
maven {
name = 'spongepowered-repo'
url = 'https://repo.spongepowered.org/maven'
}

maven { url 'https://jitpack.io' }

ivy {
setUrl('https://download.nodecdn.net/containers/reforged/server/release')
metadataSources {
artifact()
}
patternLayout {
artifact('[revision]/[artifact].[ext]')
}
}

maven {
url "https://maven.envyware.co.uk/releases"
}
}
repositories {}

dependencies {
minecraft "net.minecraftforge:forge:1.20.1-47.1.44"

implementation 'pixelmon:Pixelmon-1.20.1-9.2.0-server:9.2.0'
implementation 'pixelmon:Pixelmon-1.20.1-9.2.1-server:9.2.1'

implementation 'com.github.EnvyWare.ForgePlaceholderAPI:api:2.0.4'

implementation group: 'org.spongepowered', name: 'configurate-yaml', version: '4.0.0'

shadow group: 'com.envyful.api', name: 'commons', version: '5.0.1'
shadow (group: 'com.envyful.api', name: 'forge20', version: '5.0.1') {
shadow group: 'com.envyful.api', name: 'commons', version: '5.0.2'
shadow (group: 'com.envyful.api', name: 'forge20', version: '5.0.2') {
transitive = false;
}
shadow (group: 'com.envyful.api', name: 'reforged20', version: '5.0.1') {
shadow (group: 'com.envyful.api', name: 'reforged20', version: '5.0.2') {
transitive = false;
}
}
Expand Down
2 changes: 1 addition & 1 deletion forge20/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ issueTrackerURL="https://github.com/EnvyWare/BetterDexRewards/issues"

[[mods]]
modId="betterdexrewards"
version="3.3.0"
version="3.3.1"
displayName="BetterDexRewards Forge"
displayURL="https://github.com/EnvyWare"
credits="https://github.com/EnvyWare"
Expand Down

0 comments on commit b31298e

Please sign in to comment.