java-desktop-util-demo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.nbbrd.java-desktop-util</groupId> <artifactId>java-desktop-util-demo</artifactId> <version>2.4.0</version> </dependency>
<?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>java-desktop-util-parent</artifactId> <groupId>com.github.nbbrd.java-desktop-util</groupId> <version>2.4.0</version> </parent> <artifactId>java-desktop-util-demo</artifactId> <packaging>jar</packaging> <name>java-desktop-util-demo</name> <description>Desktop utilities for Java - Demo</description> <url>https://github.com/nbbrd/java-desktop-util</url> <properties> <ikonli.version>2.6.0</ikonli.version> </properties> <dependencies> <!-- compile only --> <dependency> <groupId>org.checkerframework</groupId> <artifactId>checker-qual</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.github.nbbrd.java-design-util</groupId> <artifactId>java-design-processor</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <!-- compile & runtime --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>java-desktop-util-chart</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>java-desktop-util-fa</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>java-desktop-util-os</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>java-desktop-util-swing</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>java-desktop-util-favicon</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.kordamp.ikonli</groupId> <artifactId>ikonli-swing</artifactId> <version>${ikonli.version}</version> </dependency> <dependency> <groupId>org.kordamp.ikonli</groupId> <artifactId>ikonli-materialdesign-pack</artifactId> <version>${ikonli.version}</version> </dependency> <dependency> <groupId>com.github.nbbrd.java-io-util</groupId> <artifactId>java-io-xml-bind</artifactId> </dependency> <dependency> <groupId>com.formdev</groupId> <artifactId>flatlaf</artifactId> <version>3.4.1</version> </dependency> <!-- runtime only --> <dependency> <groupId>org.jfree</groupId> <artifactId>jfreesvg</artifactId> <scope>runtime</scope> </dependency> </dependencies> <profiles> <!-- Release assets --> <profile> <id>full-release</id> <build> <plugins> <!-- Extract changelog for release --> <plugin> <groupId>com.github.nbbrd.heylogs</groupId> <artifactId>heylogs-maven-plugin</artifactId> <executions> <execution> <id>extract-changelog</id> <goals> <goal>extract</goal> </goals> <configuration> <inputFile>${project.parent.basedir}/CHANGELOG.md</inputFile> </configuration> </execution> </executions> </plugin> <!-- Release assets --> <plugin> <groupId>org.jreleaser</groupId> <artifactId>jreleaser-maven-plugin</artifactId> <executions> <execution> <phase>install</phase> <goals> <goal>full-release</goal> </goals> </execution> </executions> <configuration> <jreleaser> <release> <github> <skipTag>true</skipTag> <!-- Fix default value --> <branch>master</branch> <changelog> <external>${project.build.directory}/CHANGELOG.md</external> </changelog> </github> </release> </jreleaser> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>