maps-nominatim-service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.wizzdi</groupId> <artifactId>maps-nominatim-service</artifactId> <version>9.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> <parent> <groupId>com.wizzdi</groupId> <artifactId>flexicore-boot-plugins-parent</artifactId> <version>9.0.2</version> </parent> <artifactId>maps-nominatim-service</artifactId> <dependencies> <dependency> <groupId>com.wizzdi</groupId> <artifactId>maps-service</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-jaxrs2-jakarta</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>flexicore-boot</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>flexicore-boot-dynamic-invokers-model</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>dynamic-properties-database-converter</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>flexicore-security-model</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>flexicore-boot-starter-web</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>flexicore-boot-starter-data-jpa</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>flexicore-security-service</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>flexicore-boot-starter-actuator</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>flexicore-boot-dynamic-invokers-service</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>flexicore-territories-model</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>flexicore-territories-service</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>flexicore-file-model</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>maps-model</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <minimizeJar>false</minimizeJar> <createDependencyReducedPom>true</createDependencyReducedPom> <dependencyReducedPomLocation>${java.io.tmpdir}/dependency-reduced-pom.xml </dependencyReducedPomLocation> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> <resource>META-INF/cxf/bus-extensions.txt</resource> </transformer> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <manifestEntries> <Plugin-Id>${project.artifactId}</Plugin-Id> <Plugin-Version>${project.version}</Plugin-Version> <Plugin-Dependencies>maps-service@>=9.0.2</Plugin-Dependencies> </manifestEntries> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>