spring-messagesource-catalog
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.alaugks</groupId> <artifactId>spring-messagesource-catalog</artifactId> <version>0.5.1</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> <parent> <groupId>io.github.alaugks</groupId> <artifactId>spring-messagesource-parent</artifactId> <version>3.3.10</version> </parent> <artifactId>spring-messagesource-catalog</artifactId> <version>0.5.1</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>Catalog to create a custom Spring MessageSource</description> <url>https://github.com/alaugks/spring-messagesource-catalog</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>André Laugks</name> <email>alaugks@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/alaugks/spring-messagesource-catalog</connection> <developerConnection>scm:git:https://github.com/alaugks/spring-messagesource-catalog</developerConnection> <url>https://github.com/alaugks/spring-messagesource-catalog</url> </scm> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <configuration> <excludes> <exclude>**/CatalogCache.*</exclude> </excludes> </configuration> <executions> <execution> <id>jacoco-report</id> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>