logisland-service-rest
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.hurence.logisland</groupId> <artifactId>logisland-service-rest</artifactId> <version>1.4.1</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>logisland-services</artifactId> <groupId>com.hurence.logisland</groupId> <version>1.4.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>logisland-service-rest</artifactId> <packaging>jar</packaging> <name>Rest Service Plugin</name> <dependencies> <dependency> <groupId>com.hurence.logisland</groupId> <artifactId>logisland-api</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.hurence.logisland</groupId> <artifactId>logisland-utils</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>3.10.0</version> </dependency> <dependency> <groupId>com.burgstaller</groupId> <artifactId>okhttp-digest</artifactId> <version>1.18</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${org.slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.hurence.logisland</groupId> <artifactId>logisland-maven-plugin</artifactId> </plugin> <!-- Used to make a test jar. But this can not be used in plugin as their class loader are isolated. If you want--> <!-- To use the jar in plugin module (processor for example) you need to find a way to add this jar to the classpath--> <!-- thanks to the logisland-maven-plugin, or the logisland plugin mechanism. Did not had time for this so I choose instead--> <!-- to decorralate my test processor from this service implementation using a Mock that I created inside logisland-api module which is available inside plugin modules --> <!-- <plugin>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-jar-plugin</artifactId>--> <!-- <version>${maven-jar-plugin}</version>--> <!-- <executions>--> <!-- <execution>--> <!-- <goals>--> <!-- <goal>test-jar</goal>--> <!-- </goals>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> </plugins> </build> </project>