vaadin-grid-exporter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.xdev-software</groupId> <artifactId>vaadin-grid-exporter</artifactId> <version>3.0.3</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>vaadin-grid-exporter</artifactId> <version>3.0.3</version> <packaging>pom</packaging> <name>vaadin-grid-exporter Redirector</name> <description>vaadin-grid-exporter Redirector</description> <url>https://github.com/xdev-software/vaadin-grid-exporter</url> <scm> <url>https://github.com/xdev-software/vaadin-grid-exporter</url> <connection>https://github.com/xdev-software/vaadin-grid-exporter.git</connection> </scm> <inceptionYear>2024</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>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <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> <relocation> <groupId>software.xdev</groupId> <artifactId>vaadin-grid-exporter</artifactId> <version>3.0.3</version> </relocation> </distributionManagement> <profiles> <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>