ranking
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.mayhoo</groupId>
<artifactId>ranking</artifactId>
<version>1.1.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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.4</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<packaging>jar</packaging>
<groupId>com.mayhoo</groupId>
<artifactId>ranking</artifactId>
<version>1.1.0</version>
<name>Ranking Algorithms</name>
<properties>
<java.version>21</java.version>
<mayhoo-autoconfig.version>3.3.4</mayhoo-autoconfig.version>
<project.resources.sourceEncoding>UTF-8</project.resources.sourceEncoding>
<!-- Maven Enforcer Settings: https://maven.apache.org/enforcer/maven-enforcer-plugin -->
<enforcer.skip>false</enforcer.skip>
<enforcer.maven-version>[3.9.0,)</enforcer.maven-version>
<enforcer.java-version>[21,)</enforcer.java-version>
<enforcer.failBuild>true</enforcer.failBuild>
<!-- GPG Signing https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-gpg-plugin -->
<maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version>
<gpg.keyname>CFFD0FF0FC1D0C492BEF0BF8B2DE79726E6C9E3A</gpg.keyname>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mayhoo.parent</groupId>
<artifactId>mayhoo-autoconfigure</artifactId>
<version>${mayhoo-autoconfig.version}</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<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.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<extensions>true</extensions>
<executions>
<execution>
<id>enforcer-enforce</id>
<goals>
<goal>enforce</goal>
</goals>
<phase>validate</phase>
<configuration>
<skip>${enforcer.skip}</skip>
<rules>
<requireMavenVersion>
<version>${enforcer.maven-version}</version>
</requireMavenVersion>
<requireJavaVersion>
<version>${enforcer.java-version}</version>
</requireJavaVersion>
</rules>
<fail>${enforcer.failBuild}</fail>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<goals>
<goal>sign</goal>
</goals>
<phase>verify</phase>
<configuration>
<keyname>${gpg.keyname}</keyname>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<doclint>none</doclint>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<developerConnection>scm:git:ssh://git@bitbucket.org/djmay/ranking.git</developerConnection>
<connection>scm:git:https://git@bitbucket.org/djmay/ranking.git</connection>
<url>https://bitbucket.org/djmay/ranking</url>
<tag>ranking-1.1.0</tag>
</scm>
<repositories>
<repository>
<id>artifact-registry</id>
<url>artifactregistry://us-east4-maven.pkg.dev/builds-265120/mayhoo-repo</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>ossrh</id>
<name>Central Repository OSSRH</name>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<name>Central Repository OSSRH</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>