localstack-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.smartup.localstack</groupId>
<artifactId>localstack-spring-boot-starter</artifactId>
<version>1.1.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>io.smartup.localstack</groupId>
<artifactId>localstack-spring-boot-parent</artifactId>
<version>1.1.1</version>
<relativePath>../localstack-spring-boot-parent</relativePath>
</parent>
<artifactId>localstack-spring-boot-starter</artifactId>
<version>1.1.1</version>
<packaging>jar</packaging>
<name>localstack-spring-boot-starter</name>
<description>Spring Boot Starter for using LocalStack</description>
<url>https://github.com/smartupio/localtack-spring-boot</url>
<developers>
<developer>
<id>matelang</id>
<name>Mate Lang</name>
<email>mate@smartup.io</email>
<url>https://www.smartup.io</url>
</developer>
<developer>
<id>adrian@smartup.io</id>
<name>Adrian Ambrus</name>
<email>adrian@smartup.io</email>
<url>https://www.smartup.io</url>
</developer>
</developers>
<licenses>
<license>
<name>Apache License Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<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>
<scm>
<url>https://github.com/smartupio/localstack-spring-boot</url>
<connection>scm:git:git@github.com:smartupio/localstack-spring-boot.git</connection>
</scm>
<dependencies>
<dependency>
<groupId>io.smartup.localstack</groupId>
<artifactId>localstack-spring-boot-autoconfigure</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>