mirror of
https://github.com/catppuccin/java.git
synced 2026-01-15 07:32:02 +08:00
* fix(palette): incorrect rgb channel ordering * tests(palette): remove "built-in" tests * ci(deploy): switch to token based auth
37 lines
1.2 KiB
XML
37 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
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>
|
|
<parent>
|
|
<artifactId>catppuccin-java</artifactId>
|
|
<groupId>com.catppuccin</groupId>
|
|
<version>2.0.3</version>
|
|
</parent>
|
|
|
|
<packaging>jar</packaging>
|
|
<artifactId>catppuccin-processing</artifactId>
|
|
<version>1.0.2</version>
|
|
<name>catppuccin-processing</name>
|
|
<description>Soothing pastel code generator for Catppuccin</description>
|
|
<url>https://github.com/catppuccin/java</url>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.squareup</groupId>
|
|
<artifactId>javapoet</artifactId>
|
|
<version>1.13.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.12.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|