mirror of
https://github.com/TotalFreedomMC/OpenInv.git
synced 2024-12-23 00:15:08 +00:00
Replaced modern
profile with recent
Going forward, the primary file uploaded to Bukkit will probably be the smaller build made with the `recent` profile, supporting only the last 2 versions. The uberjar created by the `all` will be provided as an additional download. OpenInv v3.1.3-SNAPSHOT `all` uberjar currently is 276KB. The `recent` jar is only 81KB. It's getting silly, and will only continue to get worse.
This commit is contained in:
parent
6744e71127
commit
9a53e46dd3
3 changed files with 526 additions and 528 deletions
|
@ -18,19 +18,14 @@
|
||||||
<profile>
|
<profile>
|
||||||
<id>latest</id>
|
<id>latest</id>
|
||||||
<modules>
|
<modules>
|
||||||
<module>v1_11_R1</module>
|
<module>v1_12_R1</module>
|
||||||
</modules>
|
</modules>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
<profile>
|
<profile>
|
||||||
<id>modern</id>
|
<id>recent</id>
|
||||||
|
<!-- The recent profile is for the most recent 2 versions. -->
|
||||||
<modules>
|
<modules>
|
||||||
<module>v1_8_R1</module>
|
|
||||||
<module>v1_8_R2</module>
|
|
||||||
<module>v1_8_R3</module>
|
|
||||||
<module>v1_9_R1</module>
|
|
||||||
<module>v1_9_R2</module>
|
|
||||||
<module>v1_10_R1</module>
|
|
||||||
<module>v1_11_R1</module>
|
<module>v1_11_R1</module>
|
||||||
<module>v1_12_R1</module>
|
<module>v1_12_R1</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
File diff suppressed because it is too large
Load diff
4
pom.xml
4
pom.xml
|
@ -51,10 +51,10 @@
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
<profile>
|
<profile>
|
||||||
<id>modern</id>
|
<id>recent</id>
|
||||||
<activation>
|
<activation>
|
||||||
<property>
|
<property>
|
||||||
<name>modern</name>
|
<name>recent</name>
|
||||||
<value>true</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</activation>
|
</activation>
|
||||||
|
|
Loading…
Reference in a new issue