diff options
| author | 2026-01-10 16:04:56 +0200 | |
|---|---|---|
| committer | 2026-01-10 16:19:49 +0200 | |
| commit | e06244556a8380501ee0aa7dd9d7e21769aeb6ce (patch) | |
| tree | bec9769fa70dd1547bf39bbaa336d4fe7fac22cf | |
| parent | Add QOI Java library (diff) | |
| download | lv.enes:parent-e06244556a8380501ee0aa7dd9d7e21769aeb6ce.tar.gz lv.enes:parent-e06244556a8380501ee0aa7dd9d7e21769aeb6ce.tar.xz lv.enes:parent-e06244556a8380501ee0aa7dd9d7e21769aeb6ce.zip | |
Add LWJGL
| -rw-r--r-- | pom.xml | 160 |
1 files changed, 160 insertions, 0 deletions
| @@ -65,6 +65,7 @@ | |||
| 65 | <joml.version>1.10.8</joml.version> | 65 | <joml.version>1.10.8</joml.version> |
| 66 | <junit.version>6.0.2</junit.version> | 66 | <junit.version>6.0.2</junit.version> |
| 67 | <lombok.version>1.18.42</lombok.version> | 67 | <lombok.version>1.18.42</lombok.version> |
| 68 | <lwjgl.version>3.3.6</lwjgl.version> | ||
| 68 | <picocli.version>4.7.7</picocli.version> | 69 | <picocli.version>4.7.7</picocli.version> |
| 69 | <plugin-annotations.version>3.15.2</plugin-annotations.version> | 70 | <plugin-annotations.version>3.15.2</plugin-annotations.version> |
| 70 | <pmd.version>7.20.0</pmd.version> | 71 | <pmd.version>7.20.0</pmd.version> |
| @@ -108,6 +109,13 @@ | |||
| 108 | <type>pom</type> | 109 | <type>pom</type> |
| 109 | <scope>import</scope> | 110 | <scope>import</scope> |
| 110 | </dependency> | 111 | </dependency> |
| 112 | <dependency> | ||
| 113 | <groupId>org.lwjgl</groupId> | ||
| 114 | <artifactId>lwjgl-bom</artifactId> | ||
| 115 | <version>${lwjgl.version}</version> | ||
| 116 | <type>pom</type> | ||
| 117 | <scope>import</scope> | ||
| 118 | </dependency> | ||
| 111 | 119 | ||
| 112 | <dependency> | 120 | <dependency> |
| 113 | <groupId>com.aayushatharva.brotli4j</groupId> | 121 | <groupId>com.aayushatharva.brotli4j</groupId> |
| @@ -667,5 +675,157 @@ | |||
| 667 | </plugins> | 675 | </plugins> |
| 668 | </build> | 676 | </build> |
| 669 | </profile> | 677 | </profile> |
| 678 | |||
| 679 | <profile> | ||
| 680 | <id>lwjgl-natives-freebsd-amd64</id> | ||
| 681 | <activation> | ||
| 682 | <os> | ||
| 683 | <family>unix</family> | ||
| 684 | <name>freebsd</name> | ||
| 685 | <arch>amd64</arch> | ||
| 686 | </os> | ||
| 687 | </activation> | ||
| 688 | <properties> | ||
| 689 | <lwjgl.natives>natives-freebsd</lwjgl.natives> | ||
| 690 | </properties> | ||
| 691 | </profile> | ||
| 692 | <profile> | ||
| 693 | <id>lwjgl-natives-linux-amd64</id> | ||
| 694 | <activation> | ||
| 695 | <os> | ||
| 696 | <family>unix</family> | ||
| 697 | <name>linux</name> | ||
| 698 | <arch>amd64</arch> | ||
| 699 | </os> | ||
| 700 | </activation> | ||
| 701 | <properties> | ||
| 702 | <lwjgl.natives>natives-linux</lwjgl.natives> | ||
| 703 | </properties> | ||
| 704 | </profile> | ||
| 705 | <profile> | ||
| 706 | <id>lwjgl-natives-linux-aarch64</id> | ||
| 707 | <activation> | ||
| 708 | <os> | ||
| 709 | <family>unix</family> | ||
| 710 | <name>linux</name> | ||
| 711 | <arch>aarch64</arch> | ||
| 712 | </os> | ||
| 713 | </activation> | ||
| 714 | <properties> | ||
| 715 | <lwjgl.natives>natives-linux-arm64</lwjgl.natives> | ||
| 716 | </properties> | ||
| 717 | </profile> | ||
| 718 | <profile> | ||
| 719 | <id>lwjgl-natives-linux-arm</id> | ||
| 720 | <activation> | ||
| 721 | <os> | ||
| 722 | <family>unix</family> | ||
| 723 | <name>linux</name> | ||
| 724 | <arch>arm</arch> | ||
| 725 | </os> | ||
| 726 | </activation> | ||
| 727 | <properties> | ||
| 728 | <lwjgl.natives>natives-linux-arm32</lwjgl.natives> | ||
| 729 | </properties> | ||
| 730 | </profile> | ||
| 731 | <profile> | ||
| 732 | <id>lwjgl-natives-linux-arm32</id> | ||
| 733 | <activation> | ||
| 734 | <os> | ||
| 735 | <family>unix</family> | ||
| 736 | <name>linux</name> | ||
| 737 | <arch>arm32</arch> | ||
| 738 | </os> | ||
| 739 | </activation> | ||
| 740 | <properties> | ||
| 741 | <lwjgl.natives>natives-linux-arm32</lwjgl.natives> | ||
| 742 | </properties> | ||
| 743 | </profile> | ||
| 744 | <profile> | ||
| 745 | <id>lwjgl-natives-linux-ppc64le</id> | ||
| 746 | <activation> | ||
| 747 | <os> | ||
| 748 | <family>unix</family> | ||
| 749 | <name>linux</name> | ||
| 750 | <arch>ppc64le</arch> | ||
| 751 | </os> | ||
| 752 | </activation> | ||
| 753 | <properties> | ||
| 754 | <lwjgl.natives>natives-linux-ppc64le</lwjgl.natives> | ||
| 755 | </properties> | ||
| 756 | </profile> | ||
| 757 | <profile> | ||
| 758 | <id>lwjgl-natives-linux-riscv64</id> | ||
| 759 | <activation> | ||
| 760 | <os> | ||
| 761 | <family>unix</family> | ||
| 762 | <name>linux</name> | ||
| 763 | <arch>riscv64</arch> | ||
| 764 | </os> | ||
| 765 | </activation> | ||
| 766 | <properties> | ||
| 767 | <lwjgl.natives>natives-linux-riscv64</lwjgl.natives> | ||
| 768 | </properties> | ||
| 769 | </profile> | ||
| 770 | <profile> | ||
| 771 | <id>lwjgl-natives-macos-x86_64</id> | ||
| 772 | <activation> | ||
| 773 | <os> | ||
| 774 | <family>mac</family> | ||
| 775 | <arch>x86_64</arch> | ||
| 776 | </os> | ||
| 777 | </activation> | ||
| 778 | <properties> | ||
| 779 | <lwjgl.natives>natives-macos</lwjgl.natives> | ||
| 780 | </properties> | ||
| 781 | </profile> | ||
| 782 | <profile> | ||
| 783 | <id>lwjgl-natives-macos-aarch64</id> | ||
| 784 | <activation> | ||
| 785 | <os> | ||
| 786 | <family>mac</family> | ||
| 787 | <arch>aarch64</arch> | ||
| 788 | </os> | ||
| 789 | </activation> | ||
| 790 | <properties> | ||
| 791 | <lwjgl.natives>natives-macos-arm64</lwjgl.natives> | ||
| 792 | </properties> | ||
| 793 | </profile> | ||
| 794 | <profile> | ||
| 795 | <id>lwjgl-natives-windows-amd64</id> | ||
| 796 | <activation> | ||
| 797 | <os> | ||
| 798 | <family>windows</family> | ||
| 799 | <arch>amd64</arch> | ||
| 800 | </os> | ||
| 801 | </activation> | ||
| 802 | <properties> | ||
| 803 | <lwjgl.natives>natives-windows</lwjgl.natives> | ||
| 804 | </properties> | ||
| 805 | </profile> | ||
| 806 | <profile> | ||
| 807 | <id>lwjgl-natives-windows-x86</id> | ||
| 808 | <activation> | ||
| 809 | <os> | ||
| 810 | <family>windows</family> | ||
| 811 | <arch>x86</arch> | ||
| 812 | </os> | ||
| 813 | </activation> | ||
| 814 | <properties> | ||
| 815 | <lwjgl.natives>natives-windows-x86</lwjgl.natives> | ||
| 816 | </properties> | ||
| 817 | </profile> | ||
| 818 | <profile> | ||
| 819 | <id>lwjgl-natives-windows-aarch64</id> | ||
| 820 | <activation> | ||
| 821 | <os> | ||
| 822 | <family>windows</family> | ||
| 823 | <arch>aarch64</arch> | ||
| 824 | </os> | ||
| 825 | </activation> | ||
| 826 | <properties> | ||
| 827 | <lwjgl.natives>natives-windows-arm64</lwjgl.natives> | ||
| 828 | </properties> | ||
| 829 | </profile> | ||
| 670 | </profiles> | 830 | </profiles> |
| 671 | </project> | 831 | </project> |