optimisation-service-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>se.optimatika</groupId>
<artifactId>optimisation-service-client</artifactId>
<version>0.2.0</version>
</dependency><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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>se.optimatika</groupId>
<artifactId>optimisation-service-client</artifactId>
<version>0.2.0</version>
<name>Optimisation Service Client</name>
<description>A client to access Optimatika's optimisation service.</description>
<packaging>jar</packaging>
<url>https://github.com/optimatika/optimisation-service-client</url>
<licenses>
<license>
<name>The Unlicense</name>
<url>https://unlicense.org/</url>
</license>
</licenses>
<organization>
<name>Optimatika</name>
<url>https://optimatika.se</url>
</organization>
<developers>
<developer>
<id>apete</id>
<name>Anders Peterson</name>
<email>apete@optimatika.se</email>
<organization>Optimatika</organization>
<organizationUrl>https://optimatika.se</organizationUrl>
</developer>
</developers>
<scm>
<url>https://github.com/optimatika/optimisation-service-client</url>
<connection>https://github.com/optimatika/optimisation-service-client.git</connection>
<developerConnection>git@github.com:optimatika/optimisation-service-client.git</developerConnection>
</scm>
<issueManagement>
<url>https://github.com/optimatika/optimisation-service-client/issues</url>
<system>GitHub</system>
</issueManagement>
<distributionManagement>
<snapshotRepository>
<id>central</id>
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.14.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ojalgo</groupId>
<artifactId>optimisation-models</artifactId>
<version>1.1.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.15.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<release>${java.version}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.12.0</version>
<configuration>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<configuration>
<failOnError>false</failOnError>
<quiet>true</quiet>
<serialwarn>false</serialwarn>
<doclint>none</doclint>
</configuration>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>deploy</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.11.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>
</project>