relax-java-spring-boot-starter-sample
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.infilos</groupId> <artifactId>relax-java-spring-boot-starter-sample</artifactId> <version>2.7.18-0</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"> <parent> <artifactId>relax-spring-boot-starter</artifactId> <groupId>com.infilos</groupId> <version>2.7.18-0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>relax-java-spring-boot-starter-sample</artifactId> <packaging>jar</packaging> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>com.infilos</groupId> <artifactId>relax-java-spring-boot-starter</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.infilos</groupId> <artifactId>relax-track-rest-spring-boot-starter</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.infilos</groupId> <artifactId>relax-track-unirest</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.infilos</groupId> <artifactId>relax-track-audit-spring-boot-starter</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.infilos</groupId> <artifactId>relax-authctx-spring-boot-starter</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.infilos</groupId> <artifactId>relax-router-spring-boot-starter</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.33</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> <dependency> <groupId>org.apache.tika</groupId> <artifactId>tika-core</artifactId> <version>1.24.1</version> </dependency> <dependency> <groupId>com.konghq</groupId> <artifactId>unirest-java</artifactId> </dependency> <dependency> <groupId>com.konghq</groupId> <artifactId>unirest-objectmapper-jackson</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${boot.version}</version> <executions> <execution> <goals> <goal>repackage</goal> </goals> <configuration> <classifier>fat</classifier> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.5.2</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>