funix-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>fr.funixgaming.api</groupId>
<artifactId>funix-api</artifactId>
<version>1.2.8.5</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>
<groupId>fr.funixgaming.api</groupId>
<artifactId>funix-api</artifactId>
<version>1.2.8.5</version>
<packaging>pom</packaging>
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.5</version>
</parent>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2022.0.0-RC3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>core</module>
<module>api</module>
<module>service</module>
</modules>
<name>FunixAPI</name>
<description>Project used in Funix projects</description>
<url>https://github.com/FunixProductions/FunixAPI</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Antoine PRONNIER</name>
<email>antoine.pronnier@gmail.com</email>
<organization>FunixProductions</organization>
<organizationUrl>https://funixgaming.fr</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/FunixProductions/FunixAPI.git</connection>
<developerConnection>scm:git:ssh://github.com:FunixProductions/FunixAPI.git</developerConnection>
<url>http://github.com/FunixProductions/FunixAPI/tree/master</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<java.version>17</java.version>
<funixgaming.api.version>1.2.8.5</funixgaming.api.version>
<!-- https://mvnrepository.com/artifact/org.mapstruct/mapstruct -->
<mapstruct.version>1.5.4.Final</mapstruct.version>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
<maven.compiler.version>3.11.0</maven.compiler.version>
<!-- https://mvnrepository.com/artifact/org.flywaydb/flyway-maven-plugin -->
<flyway.version>9.16.3</flyway.version>
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
<postgres.version>42.6.0</postgres.version>
<!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api -->
<jwt-api.version>0.11.5</jwt-api.version>
<!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-impl -->
<jwt-impl.version>0.11.5</jwt-impl.version>
<!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-gson -->
<jwt-gson.version>0.11.5</jwt-gson.version>
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<com.google.guava.version>31.1-jre</com.google.guava.version>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-gpg-plugin -->
<maven.sign.version>3.0.1</maven.sign.version>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin -->
<maven.javadoc.version>3.5.0</maven.javadoc.version>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-source-plugin -->
<maven.sources.version>3.2.1</maven.sources.version>
<!-- https://mvnrepository.com/artifact/org.jacoco/jacoco-maven-plugin -->
<org.jacoco.coverage.version>0.8.9</org.jacoco.coverage.version>
<!-- https://mvnrepository.com/artifact/com.icegreen/greenmail -->
<greenmail.test.mail.version>2.0.0</greenmail.test.mail.version>
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-core -->
<mockito.version>5.3.0</mockito.version>
<!-- https://mvnrepository.com/artifact/org.sonarsource.scanner.maven/sonar-maven-plugin -->
<sonarqube.plugin.version>3.9.1.2184</sonarqube.plugin.version>
<!-- https://mvnrepository.com/artifact/org.sonatype.plugins/nexus-staging-maven-plugin -->
<nexus.staging.plugin.version>1.6.13</nexus.staging.plugin.version>
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor -->
<spring.boot.configuration.processor.version>3.0.5</spring.boot.configuration.processor.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${com.google.guava.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.icegreen</groupId>
<artifactId>greenmail</artifactId>
<version>${greenmail.test.mail.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<version>${spring.boot.configuration.processor.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Sign artifacts for uploading to maven repo -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.sign.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>${sonarqube.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${nexus.staging.plugin.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<!-- Attach source jars-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.sources.version}</version>
<executions>
<execution>
<id>attach-source</id>
<phase>compile</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Attach javadocs jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Code Coverage report generation -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${org.jacoco.coverage.version}</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>generate-code-coverage-report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>