csapi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.xdev-software</groupId> <artifactId>csapi</artifactId> <version>6.0.2</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>com.xdev-software</groupId> <artifactId>csapi</artifactId> <version>6.0.2</version> <packaging>jar</packaging> <name>XDEV Component Suite</name> <description>XDEV Component Suite</description> <url>https://github.com/xdev-software/csapi</url> <scm> <url>https://github.com/xdev-software/csapi</url> <connection>https://github.com/xdev-software/csapi.git</connection> </scm> <inceptionYear>2011</inceptionYear> <organization> <name>XDEV Software</name> <url>https://xdev.software</url> </organization> <developers> <developer> <name>XDEV Software</name> <organization>XDEV Software</organization> <url>https://xdev.software</url> </developer> </developers> <licenses> <license> <name>GNU Lesser General Public License version 3</name> <url>https://www.gnu.org/licenses/lgpl-3.0.en.html</url> <distribution>repo</distribution> </license> </licenses> <properties> <javaVersion>1.8</javaVersion> <maven.compiler.source>${javaVersion}</maven.compiler.source> <maven.compiler.target>${javaVersion}</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <com.jidesoft.version>3.7.10</com.jidesoft.version> <tests.excludedGroups>xdev.category.UITest</tests.excludedGroups> </properties> <repositories> <!-- The order of definitions matters. Explicitly defining central here to make sure it has the highest priority. --> <repository> <id>central</id> <url>https://repo.maven.apache.org/maven2</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <!-- The order of definitions matters. Explicitly defining central here to make sure it has the highest priority. --> <pluginRepository> <id>central</id> <url>https://repo.maven.apache.org/maven2</url> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> </pluginRepositories> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>com.xdev-software</groupId> <artifactId>xapi</artifactId> <version>6.0.1</version> </dependency> <dependency> <groupId>com.jidesoft</groupId> <artifactId>jide-common</artifactId> <version>${com.jidesoft.version}</version> </dependency> <dependency> <groupId>com.jidesoft</groupId> <artifactId>jide-grids</artifactId> <version>${com.jidesoft.version}</version> </dependency> <dependency> <groupId>com.jidesoft</groupId> <artifactId>jide-components</artifactId> <version>${com.jidesoft.version}</version> </dependency> <dependency> <groupId>com.jidesoft</groupId> <artifactId>jide-action</artifactId> <version>${com.jidesoft.version}</version> </dependency> <dependency> <groupId>com.jidesoft</groupId> <artifactId>jide-pivot</artifactId> <version>${com.jidesoft.version}</version> </dependency> <dependency> <groupId>com.jidesoft</groupId> <artifactId>jide-data</artifactId> <version>${com.jidesoft.version}</version> </dependency> <dependency> <groupId>com.jidesoft</groupId> <artifactId>jide-dock</artifactId> <version>${com.jidesoft.version}</version> </dependency> <dependency> <groupId>com.jidesoft</groupId> <artifactId>jide-charts</artifactId> <version>${com.jidesoft.version}</version> </dependency> <dependency> <groupId>com.jidesoft</groupId> <artifactId>jide-gantt</artifactId> <version>${com.jidesoft.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.2</version> <configuration> <properties> <email>${project.organization.url}</email> </properties> <licenseSets> <licenseSet> <header>com/mycila/maven/plugin/license/templates/LGPL-3.txt</header> <includes> <include>src/main/java/**</include> <include>src/test/java/**</include> </includes> </licenseSet> </licenseSets> </configuration> <executions> <execution> <id>first</id> <goals> <goal>format</goal> </goals> <phase>process-sources</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <compilerArgs> <arg>-proc:none</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>attach-javadocs</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <quiet>true</quiet> <doclint>none</doclint> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludedGroups> ${tests.excludedGroups} </excludedGroups> </configuration> </plugin> </plugins> </build> <profiles> <profile> <!-- This build uses a private XDEV maven repository server where JIDE is hosted --> <id>xdev-build</id> <activation> <activeByDefault>true</activeByDefault> </activation> <repositories> <!-- The order of definitions matters. Explicitly defining central here to make sure it has the highest priority. --> <repository> <id>central</id> <url>https://repo.maven.apache.org/maven2</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <!-- This is required for JIDE components --> <id>proprietary-xdev-dependencies</id> <url>https://maven.pkg.github.com/xdev-software/xdev-dependencies</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> </profile> <profile> <id>ossrh</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <!-- Fixes "gpg: signing failed: Inappropriate ioctl for device" --> <!-- Prevent `gpg` from using pinentry programs --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <!-- Sometimes OSSRH is really slow --> <stagingProgressTimeoutMinutes>30</stagingProgressTimeoutMinutes> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>