maplibre
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.parttio</groupId> <artifactId>maplibre</artifactId> <version>1.5.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>org.parttio</groupId> <artifactId>maplibre</artifactId> <version>1.5.0</version> <name>MapLibreGL }> add-on</name> <description>An extension to Vaadin that provides a Java API for MapLibreGL slippy map component with modern vector layer support.</description> <url>https://github.com/parttio/maplibre</url> <properties> <vaadin.version>24.6.3</vaadin.version> <maven.compiler.release>17</maven.compiler.release> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <organization> <name>Team Parttio</name> </organization> <developers> <developer> <name>Matti Tahvonen</name> </developer> </developers> <licenses> <license> <name>Apache 2</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <dependencyManagement> <dependencies> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-bom</artifactId> <type>pom</type> <scope>import</scope> <version>${vaadin.version}</version> </dependency> <!-- The add-on itself does not depend on Spring Boot. This is to simplify testing setup only, to get compatible deps needed for testing/development. --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>3.2.2</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <scm> <url>https://github.com/parttio/maplibre</url> <connection>scm:git:git://github.com/parttio/maplibre.git</connection> <developerConnection>scm:git:ssh://git@github.com:/parttio/maplibre.git</developerConnection> <tag>maplibre-1.5.0</tag> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <issueManagement> <system>GitHub</system> <url>https://github.com/parttio/maplibre/issues</url> </issueManagement> <dependencies> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.parttio</groupId> <artifactId>velocity-component</artifactId> <version>0.0.3</version> </dependency> <dependency> <groupId>org.locationtech.jts.io</groupId> <artifactId>jts-io-common</artifactId> <version>1.19.0</version> </dependency> <dependency> <groupId>org.parttio</groupId> <artifactId>vaadin-js-loader</artifactId> <version>2.2.0</version> </dependency> <dependency> <groupId>in.virit</groupId> <artifactId>color</artifactId> <version>0.0.2</version> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-spring-boot-starter</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>com.vaadin</groupId> <artifactId>hilla</artifactId> </exclusion> <exclusion> <groupId>com.vaadin</groupId> <artifactId>hilla-dev</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>in.virit</groupId> <artifactId>viritin</artifactId> <version>2.11.3</version> <scope>test</scope> </dependency> <dependency> <groupId>io.jenetics</groupId> <artifactId>jpx</artifactId> <version>3.1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>in.virit</groupId> <artifactId>mopo</artifactId> <version>0.0.2</version> <scope>test</scope> </dependency> <!--This can be handy in development phase, if you have no jRebel , but it currently breaks e2e tests -> commented out. --> <!-- <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency> --> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.1.0</version> <configuration> <excludes> <exclude>META-INF/VAADIN/config/flow-build-info.json</exclude> </excludes> <archive> <index>true</index> <manifest> <addClasspath>false</addClasspath> <addDefaultImplementationEntries>true </addDefaultImplementationEntries> </manifest> <manifestEntries> <Vaadin-Package-Version>1</Vaadin-Package-Version> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.1.1</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <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> <autoPublish>true</autoPublish> </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-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <signer>bc</signer> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>