fluent-i18n-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.unattendedflight.fluent</groupId> <artifactId>fluent-i18n-parent</artifactId> <version>0.1.4</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>io.github.unattendedflight.fluent</groupId> <artifactId>fluent-i18n-parent</artifactId> <version>0.1.4</version> <packaging>pom</packaging> <name>Fluent i18n</name> <description>Natural language internationalization library with Maven plugin support</description> <url>https://github.com/unattendedflight/fluent-i18n</url> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>UnattendedFlight</name> <email>unattendedflight@github.com</email> <organization>UnattendedFlight</organization> <organizationUrl>https://github.com/unattendedflight</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/unattendedflight/fluent-i18n.git</connection> <developerConnection>scm:git:ssh://github.com:unattendedflight/fluent-i18n.git</developerConnection> <url>https://github.com/unattendedflight/fluent-i18n/tree/main</url> <tag>HEAD</tag> </scm> <properties> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- Spring Boot --> <spring-boot.version>3.2.0</spring-boot.version> <spring.version>6.1.0</spring.version> <!-- Testing --> <junit.version>5.10.0</junit.version> <mockito.version>5.6.0</mockito.version> <assertj.version>3.24.2</assertj.version> <!-- Build --> <maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version> <maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version> <maven-failsafe-plugin.version>3.1.2</maven-failsafe-plugin.version> <!-- Jackson --> <jackson.version>2.15.3</jackson.version> </properties> <modules> <module>fluent-i18n-core</module> <module>fluent-i18n-spring-boot-starter</module> <module>fluent-i18n-maven-plugin</module> <module>fluent-i18n-examples</module> </modules> <profiles> <profile> <id>deploy</id> <modules> <module>fluent-i18n-core</module> <module>fluent-i18n-spring-boot-starter</module> <module>fluent-i18n-maven-plugin</module> </modules> </profile> </profiles> <dependencyManagement> <dependencies> <!-- Spring Boot BOM --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> <!-- Internal modules --> <dependency> <groupId>io.github.unattendedflight.fluent</groupId> <artifactId>fluent-i18n-core</artifactId> <version>${project.version}</version> </dependency> <!-- Testing --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> <scope>test</scope> </dependency> <!-- Jackson dependencies --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>${jackson.version}</version> </dependency> </dependencies> </dependencyManagement> <distributionManagement> <snapshotRepository> <id>ossrh</id> <name>OSS Sonatype Snapshots</name> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <name>OSS Sonatype Staging</name> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven-failsafe-plugin.version}</version> </plugin> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring-boot.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.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.5.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <configuration> <keyname>E6FE5EE76E882AD447F6D690DDDBA52E8CEA83D5</keyname> <passphraseServerId>gpg-passphrase</passphraseServerId> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>