fxcl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.futurex</groupId> <artifactId>fxcl</artifactId> <version>1.9.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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.futurex</groupId> <artifactId>fxcl</artifactId> <version>1.9.0</version> <packaging>jar</packaging> <name>Futurex Client Libraries</name> <description>Futurex Client Libraries</description> <url>https://www.futurex.com/</url> <licenses> <license> <name>PROPRIETARY</name> <url>https://www.futurex.com/</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>Futurex</name> <url>https://www.futurex.com/</url> </organization> <developers> <developer> <name>Futurex Engineering</name> <email>support@futurex.com</email> </developer> </developers> <scm> <connection>scm:git:https://futurex.com/fxcl.git</connection> <developerConnection>scm:git:ssh://futurex.com/fxcl.git</developerConnection> <url>https://futurex.com/fxcl</url> <tag>HEAD</tag> </scm> <build> <plugins> <!-- Source Jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>license-as-sources</id> <phase>package</phase> <goals><goal>jar</goal></goals> <configuration> <classesDirectory>src</classesDirectory> <includes><include>LICENSE.txt</include></includes> <classifier>sources</classifier> </configuration> </execution> </executions> </plugin> <!-- Java Docs Jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.7.0</version> <executions> <execution> <id>attach-javadocs</id> <goals><goal>jar</goal></goals> </execution> </executions> </plugin> <!-- Publish to Maven Central --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>false</autoPublish> <waitUntil>published</waitUntil> </configuration> </plugin> </plugins> </build> </project>