Version based biomes
* Still working on the biome list, but everything else is there
Also need to reformat biome profiles to use ids
* update some biomes
* possibly finished biome list, changed CursorInformationWidget a bit
* update biome profiles to new format, add new nether biomes to the list, change the color of the nether biome
* update biome profiles to inclue latest biome changes
* wip biome list
* maybe final revision of biome list
* Remove allBiomes() completely in Biome, allow using nulls in DefaultVersionFeatures builder for getting default biome list
* Update CursorInformationWidget.java
* fix bug with getting default profile after building jar
* move some stuff from the b1.7.3 support branch to here
* remove guava, change some stuff to not need guava, add serial ids to 2 exceptions
* Convert old biome profiles to new format automatically
* Update conversion map and serialization of biome profiles
* Add more recognised versions, update biome list, update some colors
* Add serialization test, add create example profile button
* tiny changes with creating example profile
* Set Ctrl+D as the default biome profile shortcut
* display dialog when saving example profile
2020-04-14 00:17:25 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2015-12-20 04:50:49 +08:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2015-12-24 09:43:32 +08:00
|
|
|
<groupId>amidst</groupId>
|
|
|
|
<artifactId>amidst</artifactId>
|
2021-06-17 07:23:34 +08:00
|
|
|
<version>4.7</version>
|
2019-06-09 01:42:43 +08:00
|
|
|
<repositories>
|
2020-06-29 07:19:02 +08:00
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
2019-06-09 01:42:43 +08:00
|
|
|
</repositories>
|
2015-12-20 05:16:11 +08:00
|
|
|
<properties>
|
2015-12-20 10:45:25 +08:00
|
|
|
<maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
|
2015-12-20 05:16:11 +08:00
|
|
|
</properties>
|
2015-12-20 04:50:49 +08:00
|
|
|
<build>
|
2015-12-24 09:43:32 +08:00
|
|
|
<finalName>${amidst.build.filename}</finalName>
|
2015-12-20 04:50:49 +08:00
|
|
|
<plugins>
|
2015-12-20 10:45:25 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>properties-maven-plugin</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>initialize</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>read-project-properties</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<files>
|
|
|
|
<file>${basedir}/src/main/resources/amidst/metadata.properties</file>
|
|
|
|
</files>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-12-20 04:50:49 +08:00
|
|
|
<plugin>
|
2015-12-20 05:16:11 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
|
|
<version>2.9</version>
|
|
|
|
<configuration>
|
|
|
|
<downloadSources>true</downloadSources>
|
|
|
|
<downloadJavadocs>true</downloadJavadocs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2015-12-20 04:50:49 +08:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2020-06-29 21:59:57 +08:00
|
|
|
<version>3.8.1</version>
|
2015-12-20 04:50:49 +08:00
|
|
|
<configuration>
|
2015-12-24 09:43:32 +08:00
|
|
|
<source>${amidst.build.jdk.version}</source>
|
|
|
|
<target>${amidst.build.jdk.version}</target>
|
2015-12-20 04:50:49 +08:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2015-12-20 05:16:11 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2015-12-24 10:18:08 +08:00
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2020-06-29 21:59:57 +08:00
|
|
|
<version>3.2.4</version>
|
2015-12-20 04:50:49 +08:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2015-12-20 05:16:11 +08:00
|
|
|
<phase>package</phase>
|
2015-12-20 04:50:49 +08:00
|
|
|
<goals>
|
2015-12-24 10:18:08 +08:00
|
|
|
<goal>shade</goal>
|
2015-12-20 04:50:49 +08:00
|
|
|
</goals>
|
2015-12-20 05:16:11 +08:00
|
|
|
<configuration>
|
2020-07-02 01:46:01 +08:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<!-- This ends up being used by the Minecraft JAR, so makes sure we keep everything -->
|
|
|
|
<artifact>com.google.code.gson:gson</artifact>
|
|
|
|
<includes>
|
|
|
|
<include>**</include>
|
|
|
|
</includes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
2015-12-24 10:18:08 +08:00
|
|
|
<transformers>
|
|
|
|
<transformer
|
|
|
|
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
2015-12-20 08:17:30 +08:00
|
|
|
<mainClass>amidst.Amidst</mainClass>
|
2015-12-24 10:18:08 +08:00
|
|
|
<manifestEntries>
|
|
|
|
<Amidst-Version>${amidst.build.filename}</Amidst-Version>
|
|
|
|
<Built-On>${maven.build.timestamp}</Built-On>
|
|
|
|
</manifestEntries>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
2020-06-29 21:59:57 +08:00
|
|
|
<minimizeJar>true</minimizeJar>
|
2015-12-20 05:16:11 +08:00
|
|
|
</configuration>
|
2015-12-20 04:50:49 +08:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.miglayout</groupId>
|
|
|
|
<artifactId>miglayout-swing</artifactId>
|
|
|
|
<version>4.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>args4j</groupId>
|
|
|
|
<artifactId>args4j</artifactId>
|
|
|
|
<version>2.32</version>
|
|
|
|
</dependency>
|
2020-06-29 07:19:02 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.Querz</groupId>
|
|
|
|
<artifactId>NBT</artifactId>
|
|
|
|
<version>5.5</version>
|
|
|
|
</dependency>
|
2015-12-20 07:35:23 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2020-10-13 11:53:45 +08:00
|
|
|
<version>4.13.1</version>
|
2015-12-20 07:35:23 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-12-20 10:45:25 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>properties-maven-plugin</artifactId>
|
|
|
|
<version>1.0.0</version>
|
2015-12-21 03:40:14 +08:00
|
|
|
<scope>provided</scope>
|
|
|
|
<type>maven-plugin</type>
|
2015-12-20 10:45:25 +08:00
|
|
|
</dependency>
|
2015-12-20 04:50:49 +08:00
|
|
|
</dependencies>
|
2015-12-20 04:21:11 +08:00
|
|
|
</project>
|