swing-extras
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ca.corbett</groupId> <artifactId>swing-extras</artifactId> <version>2.2.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> <groupId>ca.corbett</groupId> <artifactId>swing-extras</artifactId> <version>2.2.0</version> <packaging>jar</packaging> <name>swing-extras</name> <description>A collection of custom components for Java Swing</description> <url>https://github.com/scorbo2/swing-extras</url> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/license/mit</url> </license> </licenses> <developers> <developer> <name>Steve Corbett</name> <email>steve@corbett.ca</email> <organization>corbett.ca</organization> <organizationUrl>http://www.corbett.ca</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/scorbo2/swing-extras.git</connection> <developerConnection>scm:git:ssh://github.com:scorbo2/swing-extras.git</developerConnection> <url>http://github.com/scorbo2/swing-extras/tree/master</url> </scm> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.12.1</version> </dependency> <dependency> <!-- https://github.com/JFormDesigner/FlatLaf --> <groupId>com.formdev</groupId> <artifactId>flatlaf</artifactId> <version>3.6</version> </dependency> <dependency> <!-- https://github.com/JFormDesigner/FlatLaf/tree/main/flatlaf-intellij-themes --> <groupId>com.formdev</groupId> <artifactId>flatlaf-intellij-themes</artifactId> <version>3.6</version> </dependency> <dependency> <!-- An oldie but a goodie --> <groupId>com.jtattoo</groupId> <artifactId>JTattoo</artifactId> <version>1.6.13</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.12.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <checksums>all</checksums> <centralBaseUrl>https://central.sonatype.com</centralBaseUrl> <centralSnapshotsUrl>https://central.sonatype.com/repository/maven-snapshots/</centralSnapshotsUrl> <skipPublishing>false</skipPublishing> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.10.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <!-- Javadoc warnings need to chill out a lot --> <additionalOptions>-Xdoclint:all -Xdoclint:-missing</additionalOptions> <additionalJOptions> <additionalJOption>-Xdoclint:all</additionalJOption> <additionalJOption>-Xdoclint:-missing</additionalJOption> </additionalJOptions> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> <configuration> <archive> <manifest> <mainClass>ca.corbett.extras.demo.DemoAppLauncher</mainClass> </manifest> <manifestEntries> <SplashScreen-Image>swing-extras/images/swing-extras-logo.jpg</SplashScreen-Image> </manifestEntries> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.2</version> </plugin> </plugins> </build> </project>