dynamic-version-url
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.boukenijhuis</groupId> <artifactId>dynamic-version-url</artifactId> <version>0.0.11</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.boukenijhuis</groupId> <artifactId>dynamic-version-url</artifactId> <version>0.0.11</version> <name>dynamic-version-url</name> <description>dynamic-version-url</description> <url>https://github.com/BoukeNijhuis/dynamic-version-url</url> <inceptionYear>2024</inceptionYear> <properties> <maven.compiler.target>21</maven.compiler.target> <maven.compiler.source>21</maven.compiler.source> <spring.version>3.2.5</spring.version> </properties> <licenses> <license> <name>Apache-2.0</name> <url>https://spdx.org/licenses/Apache-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>bnijhuis</id> <name>Bouke Nijhuis</name> </developer> </developers> <scm> <connection>scm:git:https://github.com/BoukeNijhuis/dynamic-version-url.git</connection> <developerConnection>scm:git:https://github.com/BoukeNijhuis/dynamic-version-url.git</developerConnection> <url>https://github.com/BoukeNijhuis/dynamic-version-url.git</url> <tag>HEAD</tag> </scm> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <version>${spring.version}</version> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.10.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> </plugin> <plugin> <groupId>org.jreleaser</groupId> <artifactId>jreleaser-maven-plugin</artifactId> <version>1.12.0</version> <configuration> <jreleaser> <signing> <active>ALWAYS</active> <armored>true</armored> </signing> <deploy> <maven> <mavenCentral> <sonatype> <active>ALWAYS</active> <url>https://central.sonatype.com/api/v1/publisher</url> <stagingRepositories>target/staging-deploy</stagingRepositories> <applyMavenCentralRules>true</applyMavenCentralRules> </sonatype> </mavenCentral> </maven> </deploy> </jreleaser> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>publication</id> <properties> <altDeploymentRepository>local::file:./target/staging-deploy</altDeploymentRepository> </properties> <build> <defaultGoal>deploy</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <attach>true</attach> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> <configuration> <attach>true</attach> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>