sidekick-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.runsidekick</groupId> <artifactId>sidekick-api</artifactId> <version>0.0.17</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"> <parent> <artifactId>sidekick-oss</artifactId> <groupId>com.runsidekick</groupId> <version>0.0.17</version> </parent> <artifactId>sidekick-api</artifactId> <modelVersion>4.0.0</modelVersion> <dependencies> <dependency> <groupId>com.runsidekick</groupId> <artifactId>sidekick-broker-client</artifactId> </dependency> <dependency> <groupId>com.runsidekick</groupId> <artifactId>sidekick-event-history-helper</artifactId> </dependency> <dependency> <groupId>com.runsidekick</groupId> <artifactId>sidekick-probetag-service</artifactId> </dependency> <dependency> <groupId>com.runsidekick</groupId> <artifactId>sidekick-webhook-service</artifactId> </dependency> <!-- ========================================== --> <!-- Thundra dependencies --> <!-- ========================================== --> <dependency> <groupId>io.thundra.swark</groupId> <artifactId>thundra-jdbc-spring</artifactId> </dependency> <dependency> <groupId>io.thundra.swark</groupId> <artifactId>thundra-cache-spring</artifactId> </dependency> <!-- ========================================== --> <!-- Spring dependencies --> <!-- ========================================== --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-log4j2</artifactId> <exclusions> <exclusion> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-oauth2-resource-server</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-oauth2-jose</artifactId> </dependency> <!-- ========================================== --> <!-- 3rd party dependencies --> <!-- ========================================== --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> </dependency> <!-- ========================================== --> <!-- Test dependencies --> <!-- ========================================== --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.thundra.swark</groupId> <artifactId>thundra-utils</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.elasticsearch.client</groupId> <artifactId>elasticsearch-rest-high-level-client</artifactId> </exclusion> <exclusion> <groupId>org.elasticsearch.client</groupId> <artifactId>transport</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.thundra.swark</groupId> <artifactId>thundra-env-utils</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.thundra.swark</groupId> <artifactId>thundra-env-utils</artifactId> <scope>test</scope> <type>test-jar</type> </dependency> <!-- ========================================== --> </dependencies> <build> <finalName>sidekick-api</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <excludes> <exclude> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </exclude> </excludes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>build</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.6</version> <executions> <execution> <id>assembly-on-package</id> <configuration> <descriptor>src/main/resources/assembly/bin.xml</descriptor> <finalName>${project.build.finalName}</finalName> <appendAssemblyId>false</appendAssemblyId> </configuration> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <activation> <activeByDefault>false</activeByDefault> </activation> <properties> <docker.image.prefix>runsidekick</docker.image.prefix> </properties> <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <version>1.4.13</version> <configuration> <repository>${docker.image.prefix}/${project.artifactId}</repository> <tag>latest</tag> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>