cssfx
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.fxmisc.cssfx</groupId> <artifactId>cssfx</artifactId> <version>11.2.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>org.fxmisc.cssfx</groupId> <artifactId>cssfx</artifactId> <version>11.2.2</version> <name>CSSFX</name> <description>CSSFX enhances developper productivity by offering hot-reloading of CSS in running applications</description> <url>http://www.fxmisc.org/cssfx</url> <organization> <name>CSSFX by Matthieu Brouillard</name> <url>http://www.fxmisc.org/cssfx/</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>McFoggy</id> <name>Matthieu Brouillard</name> <email>matthieu@brouillard.fr</email> <url>https://github.com/mcfoggy</url> <roles> <role>Founder</role> <role>Maintainer</role> </roles> </developer> <developer> <id>FlorianKirmaier</id> <name>Florian Kirmaier</name> <url>https://github.com/FlorianKirmaier</url> <roles> <role>Contributor</role> </roles> </developer> </developers> <scm> <connection>scm:git:git://github.com/mcfoggy/cssfx.git</connection> <developerConnection>scm:git:git@github.com/mcfoggy/cssfx.git</developerConnection> <tag>11.2.2</tag> <url>https://github.com/mcfoggy/cssfx</url> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/mcfoggy/cssfx/issues</url> </issueManagement> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <maven.compiler.target>11</maven.compiler.target> <maven.compiler.source>11</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.inceptionYear>2014</project.inceptionYear> </properties> <dependencies> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> <version>11</version> </dependency> <dependency> <groupId>de.sandec</groupId> <artifactId>JMemoryBuddy</artifactId> <version>0.1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testfx</groupId> <artifactId>testfx-junit5</artifactId> <version>4.0.16-alpha</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testfx</groupId> <artifactId>testfx-core</artifactId> <version>4.0.16-alpha</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.5.2</version> <scope>test</scope> </dependency> </dependencies> <build> <testResources> <testResource> <directory>src/test/java</directory> <includes> <include>**/*.fxml</include> <include>**/*.css</include> <include>**/*.properties</include> <include>**/*.png</include> <include>**/*.gif</include> <include>**/*.jpg</include> <include>**/*.jpeg</include> <include>**/*.bmp</include> </includes> </testResource> <testResource> <directory>src/test/resources</directory> <includes> <include>**/*.*</include> </includes> </testResource> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <pluginManagement> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M2</version> </plugin> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <versionRange>[1.7,)</versionRange> <goals> <goal>update-file-header</goal> </goals> </pluginExecutionFilter> <action> <ignore></ignore> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>11</source> <target>11</target> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M3</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>test-jar</id> <phase>package</phase> <goals> <goal>test-jar</goal> </goals> </execution> </executions> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.7</version> <executions> <execution> <id>license-update-sources</id> <phase>process-sources</phase> <goals> <goal>update-file-header</goal> </goals> </execution> </executions> <configuration> <licenseName>apache_v2</licenseName> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.5</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-java-version</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireJavaVersion> <version>[11,)</version> </requireJavaVersion> </rules> <fail>true</fail> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <activation /> <build> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-releasable-state</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireReleaseDeps /> <requireReleaseVersion /> <requireProperty> <property>jgitver.dirty</property> <regex>false</regex> <regexMessage>You cannot release in a dirty state</regexMessage> </requireProperty> <requireProperty> <property>jgitver.branch_name</property> <regex>^$|master|java\-8</regex> <regexMessage>You must release from master or from a detached HEAD, current branch is '${jgitver.branch_name}'</regexMessage> </requireProperty> </rules> <fail>true</fail> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>ci</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-Djava.awt.headless=true -Dtestfx.robot=glass -Dtestfx.headless=true -Dprism.order=sw -Dprism.text=t2k -Dtestfx.setup.timeout=2500</argLine> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.testfx</groupId> <artifactId>openjfx-monocle</artifactId> <version>jdk-11+26</version> <scope>test</scope> </dependency> </dependencies> </profile> </profiles> </project>