svarut-rest-klient
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>no.ks.fiks.svarut</groupId> <artifactId>svarut-rest-klient</artifactId> <version>4.3.0</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>no.ks.fiks.svarut</groupId> <artifactId>svarut-rest-klient-parent</artifactId> <version>4.3.0</version> </parent> <artifactId>svarut-rest-klient</artifactId> <name>SvarUt Rest Java-klient</name> <description>Klient for sending av forsendelser via SvarUt rest grensesnittet</description> <dependencies> <dependency> <groupId>no.ks.fiks</groupId> <artifactId>kryptering</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-client</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jsonschema2pojo</groupId> <artifactId>jsonschema2pojo-maven-plugin</artifactId> <version>1.2.2</version> <configuration> <includeAdditionalProperties>false</includeAdditionalProperties> <includeConstructors>true</includeConstructors> <includeGetters>true</includeGetters> <includeSetters>true</includeSetters> <generateBuilders>true</generateBuilders> <usePrimitives>true</usePrimitives> </configuration> <executions> <execution> <id>forsendelse</id> <phase>generate-sources</phase> <goals> <goal>generate</goal> </goals> <configuration> <sourcePaths> <sourcePath>${basedir}/json/</sourcePath> </sourcePaths> <targetPackage>no.ks.fiks.svarut.klient.model</targetPackage> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>