mirror of https://github.com/weisJ/darklaf.git
darculadarcula-themefeelguihacktoberfestintellijintellij-themelaflooklookandfeelnativesolarizedsolarized-dark-themesolarized-light-themesvgswingthemethemes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
4.0 KiB
103 lines
4.0 KiB
5 years ago
|
<?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>
|
||
|
|
||
|
<artifactId>darklaf</artifactId>
|
||
|
<groupId>com.weis</groupId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<maven.compiler.source>12</maven.compiler.source>
|
||
|
<maven.compiler.target>12</maven.compiler.target>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>darcula</groupId>
|
||
|
<artifactId>darcula.laf</artifactId>
|
||
|
<version>1.0.0</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.swinglabs</groupId>
|
||
|
<artifactId>swingx</artifactId>
|
||
|
<version>1.6.1</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.kitfox.svg</groupId>
|
||
|
<artifactId>svg-salamander</artifactId>
|
||
|
<version>1.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jetbrains</groupId>
|
||
|
<artifactId>annotations</artifactId>
|
||
|
<version>16.0.1</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.8.0</version>
|
||
|
<configuration>
|
||
|
<compilerArgs>
|
||
|
<arg>--enable-preview</arg>
|
||
|
<arg>--add-exports=java.desktop/sun.awt=ALL-UNNAMED</arg>
|
||
|
<arg>--add-exports=java.desktop/com.sun.java.swing=ALL-UNNAMED</arg>
|
||
|
<arg>--add-exports=java.desktop/sun.swing=ALL-UNNAMED</arg>
|
||
|
</compilerArgs>
|
||
|
<source>12</source>
|
||
|
<target>12</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>3.2.1</version>
|
||
|
<configuration>
|
||
|
<shadedClassifierName>all</shadedClassifierName>
|
||
|
<dependencyReducedPomLocation>
|
||
|
${basedir}/target/dependency-reduced-pom.xml
|
||
|
</dependencyReducedPomLocation>
|
||
|
<filters>
|
||
|
<filter>
|
||
|
<artifact>*:*</artifact>
|
||
|
<excludes>
|
||
|
<exclude>META-INF/*.SF</exclude>
|
||
|
<exclude>META-INF/*.DSA</exclude>
|
||
|
<exclude>META-INF/*.RSA</exclude>
|
||
|
</excludes>
|
||
|
</filter>
|
||
|
<filter>
|
||
|
<artifact>com.kitfox.svg:svg-salamander</artifact>
|
||
|
<excludes>
|
||
|
<exclude>icons/</exclude>
|
||
|
<exclude>help/</exclude>
|
||
|
</excludes>
|
||
|
</filter>
|
||
|
</filters>
|
||
|
<minimizeJar>true</minimizeJar>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|