helios-status-spring-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.tum.cit.aet</groupId> <artifactId>helios-status-spring-starter</artifactId> <version>1.1.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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.tum.cit.aet</groupId> <artifactId>helios-status-spring-starter</artifactId> <version>1.1.0</version> <packaging>jar</packaging> <name>Helios Status Spring Starter</name> <description>Helios starter for Spring Boot apps – push-based lifecycle status reporting.</description> <url>https://github.com/ls1intum/Helios/tree/staging/server/helios-status-spring-starter</url> <properties> <maven.version>3.9.9</maven.version> <java.version>21</java.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> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <spring.boot.version>3.5.0</spring.boot.version> <!-- dependencies --> <lombok.version>1.18.38</lombok.version> <slf4j-api.version>2.0.17</slf4j-api.version> <!-- plugins --> <maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version> <maven-source-plugin.version>3.3.1</maven-source-plugin.version> <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version> <central-publishing-maven-plugin.version>0.7.0</central-publishing-maven-plugin.version> <maven-checkstyle-plugin.version>3.6.0</maven-checkstyle-plugin.version> <checkstyle.version>10.25.0</checkstyle.version> <spring-javaformat-checkstyle.version>0.0.46</spring-javaformat-checkstyle.version> <maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version> </properties> <organization> <name>TUM Applied Education Technologies</name> <url>https://github.com/ls1intum</url> </organization> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/license/mit</url> <comments>See https://github.com/ls1intum/Helios/blob/staging/LICENSE</comments> </license> </licenses> <scm> <connection>scm:git:git://github.com/ls1intum/Helios.git</connection> <developerConnection>scm:git:ssh://git@github.com/ls1intum/Helios.git</developerConnection> <url>https://github.com/ls1intum/Helios</url> </scm> <developers> <developer> <id>egekocabas</id> <name>Ege Kocabas</name> <email>kocabas.ege@tum.de</email> </developer> </developers> <dependencyManagement> <dependencies> <!-- import Spring Boot BOM for consistent versions --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring.boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <!-- compile as Java 21 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <release>${java.version}</release> <annotationProcessorPaths> <path> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure-processor</artifactId> <version>${spring.boot.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> <!-- attach a source jar (for Maven Central) --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- attach javadoc jar (for Maven Central) --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <source>${java.version}</source> <quiet>true</quiet> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <inherited>true</inherited> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <configLocation>../checkstyle.xml</configLocation> <consoleOutput>true</consoleOutput> <failOnViolation>true</failOnViolation> <includeTestSourceDirectory>true</includeTestSourceDirectory> </configuration> <executions> <execution> <id>checkstyle-validation</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>${maven.version}</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven-checkstyle-plugin.version}</version> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${checkstyle.version}</version> </dependency> <dependency> <groupId>io.spring.javaformat</groupId> <artifactId>spring-javaformat-checkstyle</artifactId> <version>${spring-javaformat-checkstyle.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central-publishing-maven-plugin.version}</version> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>central-deploy</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <!-- This is necessary for gpg to not try to use the pinentry programs --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <autoPublish>true</autoPublish> <centralBaseUrl>https://central.sonatype.com</centralBaseUrl> <centralSnapshotsUrl>https://central.sonatype.com/repository/maven-snapshots/</centralSnapshotsUrl> <deploymentName>Helios Status Starter Deployment</deploymentName> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <!-- mirror your Gradle 'api' / 'implementation' deps --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <!-- compileOnly → provided --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.hibernate.validator</groupId> <artifactId>hibernate-validator</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j-api.version}</version> <scope>provided</scope> </dependency> <!-- test deps --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <!-- version is managed by the Spring Boot BOM you already import --> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure-processor</artifactId> <version>${spring.boot.version}</version> <scope>provided</scope> </dependency> </dependencies> <distributionManagement> <!-- for release (non-SNAPSHOT) deployments (GitHub Packages) --> <repository> <id>github</id> <name>GitHub Packages</name> <url>https://maven.pkg.github.com/ls1intum/Helios</url> </repository> <!-- for SNAPSHOT deployments (GitHub Packages) --> <snapshotRepository> <id>github</id> <name>GitHub Packages Snapshot</name> <url>https://maven.pkg.github.com/ls1intum/Helios</url> </snapshotRepository> </distributionManagement> </project>