mirror of
				https://github.com/IntellectualSites/PlotSquared.git
				synced 2025-11-04 11:13:45 +01:00 
			
		
		
		
	Rename published maven artifacts
# Conflicts: # Bukkit/build.gradle # Core/build.gradle
This commit is contained in:
		@@ -45,33 +45,34 @@ processResources {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
//noinspection GroovyAssignabilityCheck
 | 
					//noinspection GroovyAssignabilityCheck
 | 
				
			||||||
jar.archiveFileName = "PlotSquared-BukkitAPI-${project.parent.version}.jar"
 | 
					jar.archiveFileName = "PlotSquared-BukkitAPI-${project.parent.version}.jar"
 | 
				
			||||||
jar.destinationDirectory = file("../mvn/com/plotsquared/PlotSquared-BukkitAPI/" + project.parent.version)
 | 
					jar.destinationDirectory = file("../mvn/com/plotsquared/PlotSquared-Bukkit/" + project.parent.version)
 | 
				
			||||||
task createPom {
 | 
					task createPom {
 | 
				
			||||||
    doLast {
 | 
					    doLast {
 | 
				
			||||||
        pom {
 | 
					        pom {
 | 
				
			||||||
            project {
 | 
					            project {
 | 
				
			||||||
                groupId = "com.plotsquared"
 | 
					                groupId = rootProject.group
 | 
				
			||||||
                artifactId = "PlotSquared-BukkitAPI"
 | 
					                artifactId = "PlotSquared-Bukkit"
 | 
				
			||||||
                version = project.parent.version
 | 
					                version = rootProject.version
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }.writeTo("../mvn/com/plotsquared/PlotSquared-BukkitAPI/${project.parent.version}/PlotSquared-BukkitAPI-${project.parent.version}.pom")
 | 
					        }.writeTo("../mvn/com/plotsquared/PlotSquared-Bukkit/${project.parent.version}/PlotSquared-Bukkit-${project.parent.version}.pom")
 | 
				
			||||||
        pom {
 | 
					        pom {
 | 
				
			||||||
            project {
 | 
					            project {
 | 
				
			||||||
                groupId = "com.plotsquared"
 | 
					                groupId = rootProject.group
 | 
				
			||||||
                artifactId = "PlotSquared-BukkitAPI"
 | 
					                artifactId = "PlotSquared-Bukkit"
 | 
				
			||||||
                version = "latest"
 | 
					                version = "latest"
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }.writeTo("../mvn/com/plotsquared/PlotSquared-BukkitAPI/latest/PlotSquared-BukkitAPI-latest.pom")
 | 
					        }.writeTo("../mvn/com/plotsquared/PlotSquared-Bukkit/latest/PlotSquared-Bukkit-latest.pom")
 | 
				
			||||||
 | 
					         .writeTo("pom.xml")
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
task copyFiles {
 | 
					task copyFiles {
 | 
				
			||||||
    doLast {
 | 
					    doLast {
 | 
				
			||||||
        copy {
 | 
					        copy {
 | 
				
			||||||
            from("../mvn/com/plotsquared/PlotSquared-BukkitAPI/${project.parent.version}/")
 | 
					            from("../mvn/com/plotsquared/PlotSquared-Bukkit/${project.parent.version}/")
 | 
				
			||||||
            into("../mvn/com/plotsquared/PlotSquared-BukkitAPI/latest/")
 | 
					            into("../mvn/com/plotsquared/PlotSquared-Bukkit/latest/")
 | 
				
			||||||
            include("PlotSquared-BukkitAPI*.jar")
 | 
					            include("PlotSquared-Bukkit*.jar")
 | 
				
			||||||
            rename("PlotSquared-BukkitAPI-${project.parent.version}.jar", "PlotSquared-BukkitAPI-latest.jar")
 | 
					            rename("PlotSquared-Bukkit-${project.parent.version}.jar", "PlotSquared-Bukkit-latest.jar")
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										120
									
								
								Bukkit/pom.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										120
									
								
								Bukkit/pom.xml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,120 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0" encoding="UTF-8"?>
 | 
				
			||||||
 | 
					<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
 | 
				
			||||||
 | 
					    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 | 
				
			||||||
 | 
					  <modelVersion>4.0.0</modelVersion>
 | 
				
			||||||
 | 
					  <groupId>com.plotsquared</groupId>
 | 
				
			||||||
 | 
					  <artifactId>PlotSquared-Bukkit</artifactId>
 | 
				
			||||||
 | 
					  <version>latest</version>
 | 
				
			||||||
 | 
					  <dependencies>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>com.plotsquared</groupId>
 | 
				
			||||||
 | 
					      <artifactId>Core</artifactId>
 | 
				
			||||||
 | 
					      <version>latest</version>
 | 
				
			||||||
 | 
					      <scope>compile</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>com.destroystokyo.paper</groupId>
 | 
				
			||||||
 | 
					      <artifactId>paper-api</artifactId>
 | 
				
			||||||
 | 
					      <version>1.15.2-R0.1-SNAPSHOT</version>
 | 
				
			||||||
 | 
					      <scope>compile</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>com.sk89q.worldedit</groupId>
 | 
				
			||||||
 | 
					      <artifactId>worldedit-bukkit</artifactId>
 | 
				
			||||||
 | 
					      <version>7.0.1</version>
 | 
				
			||||||
 | 
					      <scope>compile</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>io.papermc</groupId>
 | 
				
			||||||
 | 
					      <artifactId>paperlib</artifactId>
 | 
				
			||||||
 | 
					      <version>1.0.2</version>
 | 
				
			||||||
 | 
					      <scope>compile</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>com.github.MilkBowl</groupId>
 | 
				
			||||||
 | 
					      <artifactId>VaultAPI</artifactId>
 | 
				
			||||||
 | 
					      <version>1.7</version>
 | 
				
			||||||
 | 
					      <scope>compile</scope>
 | 
				
			||||||
 | 
					      <exclusions>
 | 
				
			||||||
 | 
					        <exclusion>
 | 
				
			||||||
 | 
					          <artifactId>bukkit</artifactId>
 | 
				
			||||||
 | 
					          <groupId>*</groupId>
 | 
				
			||||||
 | 
					        </exclusion>
 | 
				
			||||||
 | 
					      </exclusions>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>com.sk89q.worldedit</groupId>
 | 
				
			||||||
 | 
					      <artifactId>worldedit-core</artifactId>
 | 
				
			||||||
 | 
					      <version>7.0.0</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					      <exclusions>
 | 
				
			||||||
 | 
					        <exclusion>
 | 
				
			||||||
 | 
					          <artifactId>dummypermscompat</artifactId>
 | 
				
			||||||
 | 
					          <groupId>*</groupId>
 | 
				
			||||||
 | 
					        </exclusion>
 | 
				
			||||||
 | 
					        <exclusion>
 | 
				
			||||||
 | 
					          <artifactId>bukkit-classloader-check</artifactId>
 | 
				
			||||||
 | 
					          <groupId>*</groupId>
 | 
				
			||||||
 | 
					        </exclusion>
 | 
				
			||||||
 | 
					        <exclusion>
 | 
				
			||||||
 | 
					          <artifactId>mockito-core</artifactId>
 | 
				
			||||||
 | 
					          <groupId>*</groupId>
 | 
				
			||||||
 | 
					        </exclusion>
 | 
				
			||||||
 | 
					      </exclusions>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>net.kyori</groupId>
 | 
				
			||||||
 | 
					      <artifactId>text-api</artifactId>
 | 
				
			||||||
 | 
					      <version>3.0.2</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>net.kyori</groupId>
 | 
				
			||||||
 | 
					      <artifactId>text-serializer-gson</artifactId>
 | 
				
			||||||
 | 
					      <version>3.0.2</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>net.kyori</groupId>
 | 
				
			||||||
 | 
					      <artifactId>text-serializer-legacy</artifactId>
 | 
				
			||||||
 | 
					      <version>3.0.2</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>net.kyori</groupId>
 | 
				
			||||||
 | 
					      <artifactId>text-serializer-plain</artifactId>
 | 
				
			||||||
 | 
					      <version>3.0.2</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>com.google.guava</groupId>
 | 
				
			||||||
 | 
					      <artifactId>guava</artifactId>
 | 
				
			||||||
 | 
					      <version>21.0</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>org.spigotmc</groupId>
 | 
				
			||||||
 | 
					      <artifactId>spigot-api</artifactId>
 | 
				
			||||||
 | 
					      <version>1.15.2-R0.1-SNAPSHOT</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>net.kyori</groupId>
 | 
				
			||||||
 | 
					      <artifactId>text-adapter-bukkit</artifactId>
 | 
				
			||||||
 | 
					      <version>3.0.3</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>me.clip</groupId>
 | 
				
			||||||
 | 
					      <artifactId>placeholderapi</artifactId>
 | 
				
			||||||
 | 
					      <version>2.10.4</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>junit</groupId>
 | 
				
			||||||
 | 
					      <artifactId>junit</artifactId>
 | 
				
			||||||
 | 
					      <version>4.13</version>
 | 
				
			||||||
 | 
					      <scope>test</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					  </dependencies>
 | 
				
			||||||
 | 
					</project>
 | 
				
			||||||
@@ -34,34 +34,35 @@ processResources {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//noinspection GroovyAssignabilityCheck
 | 
					//noinspection GroovyAssignabilityCheck
 | 
				
			||||||
jar.archiveFileName = "PlotSquared-CoreAPI-${project.parent.version}.jar"
 | 
					jar.archiveFileName = "PlotSquared-${project.parent.version}.jar"
 | 
				
			||||||
jar.destinationDirectory = file("../mvn/com/plotsquared/PlotSquared-CoreAPI/" + project.parent.version)
 | 
					jar.destinationDirectory = file("../mvn/com/plotsquared/PlotSquared/" + project.parent.version)
 | 
				
			||||||
task createPom {
 | 
					task createPom {
 | 
				
			||||||
    doLast {
 | 
					    doLast {
 | 
				
			||||||
        pom {
 | 
					        pom {
 | 
				
			||||||
            project {
 | 
					            project {
 | 
				
			||||||
                groupId = "com.plotsquared"
 | 
					                groupId = rootProject.group
 | 
				
			||||||
                artifactId = "PlotSquared-CoreAPI"
 | 
					                artifactId = "PlotSquared"
 | 
				
			||||||
                version = project.parent.version
 | 
					                version = project.parent.version
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }.writeTo("../mvn/com/plotsquared/PlotSquared-CoreAPI/${project.parent.version}/PlotSquared-CoreAPI-${project.parent.version}.pom")
 | 
					        }.writeTo("../mvn/com/plotsquared/PlotSquared/${project.parent.version}/PlotSquared-${project.parent.version}.pom")
 | 
				
			||||||
        pom {
 | 
					        pom {
 | 
				
			||||||
            project {
 | 
					            project {
 | 
				
			||||||
                groupId = "com.plotsquared"
 | 
					                groupId = rootProject.group
 | 
				
			||||||
                artifactId = "PlotSquared-CoreAPI"
 | 
					                artifactId = "PlotSquared"
 | 
				
			||||||
                version = "latest"
 | 
					                version = "latest"
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }.writeTo("../mvn/com/plotsquared/PlotSquared-CoreAPI/latest/PlotSquared-CoreAPI-latest.pom")
 | 
					        }.writeTo("../mvn/com/plotsquared/PlotSquared/latest/PlotSquared-latest.pom")
 | 
				
			||||||
 | 
					         .writeTo("pom.xml")
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
task copyFiles {
 | 
					task copyFiles {
 | 
				
			||||||
    doLast {
 | 
					    doLast {
 | 
				
			||||||
        copy {
 | 
					        copy {
 | 
				
			||||||
            from("../mvn/com/plotsquared/PlotSquared-CoreAPI/${project.parent.version}/")
 | 
					            from("../mvn/com/plotsquared/PlotSquared/${project.parent.version}/")
 | 
				
			||||||
            into("../mvn/com/plotsquared/PlotSquared-CoreAPI/latest/")
 | 
					            into("../mvn/com/plotsquared/PlotSquared/latest/")
 | 
				
			||||||
            include("*.jar")
 | 
					            include("*.jar")
 | 
				
			||||||
            rename("PlotSquared-CoreAPI-${project.parent.version}.jar", "PlotSquared-CoreAPI-latest.jar")
 | 
					            rename("PlotSquared-${project.parent.version}.jar", "PlotSquared-latest.jar")
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										102
									
								
								Core/pom.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										102
									
								
								Core/pom.xml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,102 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0" encoding="UTF-8"?>
 | 
				
			||||||
 | 
					<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
 | 
				
			||||||
 | 
					    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 | 
				
			||||||
 | 
					  <modelVersion>4.0.0</modelVersion>
 | 
				
			||||||
 | 
					  <groupId>com.plotsquared</groupId>
 | 
				
			||||||
 | 
					  <artifactId>PlotSquared</artifactId>
 | 
				
			||||||
 | 
					  <version>latest</version>
 | 
				
			||||||
 | 
					  <dependencies>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>org.json</groupId>
 | 
				
			||||||
 | 
					      <artifactId>json</artifactId>
 | 
				
			||||||
 | 
					      <version>20190722</version>
 | 
				
			||||||
 | 
					      <scope>compile</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>org.projectlombok</groupId>
 | 
				
			||||||
 | 
					      <artifactId>lombok</artifactId>
 | 
				
			||||||
 | 
					      <version>1.18.12</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>com.sk89q.worldedit</groupId>
 | 
				
			||||||
 | 
					      <artifactId>worldedit-core</artifactId>
 | 
				
			||||||
 | 
					      <version>7.0.0</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					      <exclusions>
 | 
				
			||||||
 | 
					        <exclusion>
 | 
				
			||||||
 | 
					          <artifactId>dummypermscompat</artifactId>
 | 
				
			||||||
 | 
					          <groupId>*</groupId>
 | 
				
			||||||
 | 
					        </exclusion>
 | 
				
			||||||
 | 
					        <exclusion>
 | 
				
			||||||
 | 
					          <artifactId>bukkit-classloader-check</artifactId>
 | 
				
			||||||
 | 
					          <groupId>*</groupId>
 | 
				
			||||||
 | 
					        </exclusion>
 | 
				
			||||||
 | 
					        <exclusion>
 | 
				
			||||||
 | 
					          <artifactId>mockito-core</artifactId>
 | 
				
			||||||
 | 
					          <groupId>*</groupId>
 | 
				
			||||||
 | 
					        </exclusion>
 | 
				
			||||||
 | 
					      </exclusions>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>net.kyori</groupId>
 | 
				
			||||||
 | 
					      <artifactId>text-api</artifactId>
 | 
				
			||||||
 | 
					      <version>3.0.2</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>net.kyori</groupId>
 | 
				
			||||||
 | 
					      <artifactId>text-serializer-gson</artifactId>
 | 
				
			||||||
 | 
					      <version>3.0.2</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>net.kyori</groupId>
 | 
				
			||||||
 | 
					      <artifactId>text-serializer-legacy</artifactId>
 | 
				
			||||||
 | 
					      <version>3.0.2</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>net.kyori</groupId>
 | 
				
			||||||
 | 
					      <artifactId>text-serializer-plain</artifactId>
 | 
				
			||||||
 | 
					      <version>3.0.2</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>com.google.guava</groupId>
 | 
				
			||||||
 | 
					      <artifactId>guava</artifactId>
 | 
				
			||||||
 | 
					      <version>21.0</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>org.yaml</groupId>
 | 
				
			||||||
 | 
					      <artifactId>snakeyaml</artifactId>
 | 
				
			||||||
 | 
					      <version>1.25</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>com.google.code.gson</groupId>
 | 
				
			||||||
 | 
					      <artifactId>gson</artifactId>
 | 
				
			||||||
 | 
					      <version>2.8.6</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>org.jetbrains.kotlin</groupId>
 | 
				
			||||||
 | 
					      <artifactId>kotlin-stdlib</artifactId>
 | 
				
			||||||
 | 
					      <version>1.3.61</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>org.jetbrains</groupId>
 | 
				
			||||||
 | 
					      <artifactId>annotations</artifactId>
 | 
				
			||||||
 | 
					      <version>18.0.0</version>
 | 
				
			||||||
 | 
					      <scope>runtime</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					    <dependency>
 | 
				
			||||||
 | 
					      <groupId>junit</groupId>
 | 
				
			||||||
 | 
					      <artifactId>junit</artifactId>
 | 
				
			||||||
 | 
					      <version>4.13</version>
 | 
				
			||||||
 | 
					      <scope>test</scope>
 | 
				
			||||||
 | 
					    </dependency>
 | 
				
			||||||
 | 
					  </dependencies>
 | 
				
			||||||
 | 
					</project>
 | 
				
			||||||
@@ -22,7 +22,7 @@ plugins {
 | 
				
			|||||||
    id "org.ajoberstar.grgit" version "4.0.1"
 | 
					    id "org.ajoberstar.grgit" version "4.0.1"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
group = "com.github.intellectualsites.plotsquared"
 | 
					group = "com.plotsquared"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
def rootVersion = "5"
 | 
					def rootVersion = "5"
 | 
				
			||||||
def revision = ""
 | 
					def revision = ""
 | 
				
			||||||
@@ -63,7 +63,7 @@ subprojects {
 | 
				
			|||||||
    apply(plugin: "idea")
 | 
					    apply(plugin: "idea")
 | 
				
			||||||
    apply(plugin: "com.github.johnrengelman.shadow")
 | 
					    apply(plugin: "com.github.johnrengelman.shadow")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    group = "com.github.intellectualsites.plotsquared"
 | 
					    group = "com.plotsquared"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    clean.doFirst {
 | 
					    clean.doFirst {
 | 
				
			||||||
        delete("../target")
 | 
					        delete("../target")
 | 
				
			||||||
@@ -112,8 +112,8 @@ subprojects {
 | 
				
			|||||||
        dependencies {
 | 
					        dependencies {
 | 
				
			||||||
            include(dependency("net.kyori:text-api:3.0.2"))
 | 
					            include(dependency("net.kyori:text-api:3.0.2"))
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        relocate("io.papermc.lib", "com.github.intellectualsites.plotsquared.bukkit.paperlib")
 | 
					        relocate("io.papermc.lib", "com.plotsquared.bukkit.paperlib")
 | 
				
			||||||
        relocate("org.json", "com.github.intellectualsites.plotsquared.json")
 | 
					        relocate("org.json", "com.plotsquared.json")
 | 
				
			||||||
        // relocate('org.mcstats', 'com.plotsquared.stats')
 | 
					        // relocate('org.mcstats', 'com.plotsquared.stats')
 | 
				
			||||||
        archiveFileName = "${parent.name}-${project.name}-${parent.version}.jar"
 | 
					        archiveFileName = "${parent.name}-${project.name}-${parent.version}.jar"
 | 
				
			||||||
        destinationDirectory = file "../target"
 | 
					        destinationDirectory = file "../target"
 | 
				
			||||||
 
 | 
				
			|||||||
										
											Binary file not shown.
										
									
								
							
		Reference in New Issue
	
	Block a user