i18n-subdivision-enums
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.meeuw.i18n</groupId> <artifactId>i18n-subdivision-enums</artifactId> <version>0.5</version> </dependency>
<?xml version="1.0"?> <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>org.meeuw.i18n</groupId> <artifactId>i18n-subdivision-enums</artifactId> <version>0.5</version> <packaging>jar</packaging> <name>Subdivision(State/Province) extension for the i18n-regions-countries package</name> <url>https://github.com/mihxil/i18n-subdivisions</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <description>Package to support subdivisions of countries. An enum for every country in the world.</description> <developers> <developer> <id>tobias-</id> <name>Tobias Olsson</name> <email>tobias@olsson.be</email> </developer> <developer> <id>mihxil</id> <name>Michiel Meeuwissen</name> <email>michiel.meeuwissen@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:${project.scm.url}.git</connection> <developerConnection>scm:git:${project.scm.url}.git</developerConnection> <url>https://github.com/mihxil/i18n-subdivisions</url> <tag>0.5</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <buildresources>${project.basedir}/src/build/resources/</buildresources> <subdivision.java.sources>${project.build.directory}/generated-sources/subdivisions</subdivision.java.sources> <regions.version>2.5.2</regions.version> <!-- build/test/debug dependencies only --> <groovy.version>5.0.1</groovy.version> <jsoup.version>1.21.2</jsoup.version> <commons.lang.version>3.18.0</commons.lang.version> <commons.text.version>1.14.0</commons.text.version> <codemodel.version>4.0.5</codemodel.version> <annotation.version>3.0.0</annotation.version> </properties> <dependencies> <dependency> <groupId>org.meeuw.i18n</groupId> <artifactId>i18n-regions-countries</artifactId> <version>${regions.version}</version> </dependency> <dependency> <groupId>org.checkerframework</groupId> <artifactId>checker-qual</artifactId> <version>3.51.0</version> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <version>${annotation.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.13.4</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.20.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.27.4</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>intellij</id> <activation> <activeByDefault>false</activeByDefault> </activation> <dependencies> <dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy</artifactId> <version>${groovy.version}</version> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>${jsoup.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons.lang.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> <version>${commons.text.version}</version> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>codemodel</artifactId> <version>${codemodel.version}</version> </dependency> </dependencies> </profile> <profile> <id>download</id> <build> <plugins> <plugin> <groupId>org.codehaus.gmavenplus</groupId> <artifactId>gmavenplus-plugin</artifactId> <executions> <execution> <id>download-subdivisions</id> <phase>initialize</phase> <goals> <goal>execute</goal> </goals> <configuration> <properties> <property> <name>project</name> <value>${project}</value> </property> </properties> <scripts> <source>${project.basedir}/src/build/groovy/downloadSubdivisions.groovy</source> </scripts> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>deploy</id> <build> </build> </profile> </profiles> <build> <defaultGoal>package</defaultGoal> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <waitUntil>published</waitUntil> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <source>8</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.6.1</version> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${subdivision.java.sources}</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <branchName>${project.version}</branchName> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <configuration> <archive> <manifestEntries> <Built-By>Michiel Meeuwissen</Built-By> <Automatic-Module-Name>org.meeuw.i18n.subdivision_enums</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.codehaus.gmavenplus</groupId> <artifactId>gmavenplus-plugin</artifactId> <configuration> <scripts> <script>${project.basedir}/src/build/groovy/generateSubdivisions.groovy</script> </scripts> </configuration> <executions> <execution> <id>generate-subdivisions</id> <phase>generate-sources</phase> <goals> <goal>execute</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>${jsoup.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons.lang.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> <version>${commons.text.version}</version> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>codemodel</artifactId> <version>${codemodel.version}</version> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <version>${annotation.version}</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.4</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.13</version> <executions> <execution> <id>agent</id> <phase>test-compile</phase> <goals> <goal>prepare-agent</goal> </goals> <configuration> <append>true</append> </configuration> </execution> <execution> <id>post-unit-test</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.18.0</version> <configuration> <rulesUri>file:///${maven.multiModuleProjectDirectory}/rules.xml</rulesUri> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.3</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>3.1.1</version> </plugin> <plugin> <groupId>org.codehaus.gmavenplus</groupId> <artifactId>gmavenplus-plugin</artifactId> <version>4.2.1</version> <dependencies> <dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy</artifactId> <version>${groovy.version}</version> </dependency> <dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy-ant</artifactId> <version>${groovy.version}</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.8</version> </plugin> </plugins> </pluginManagement> </build> <repositories> <repository> <id>central_snapshots</id> <url>https://central.sonatype.com/repository/maven-snapshots/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>central_snapshots</id> <url>https://central.sonatype.com/repository/maven-snapshots/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> </project>