jollyday
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.jollyday</groupId> <artifactId>jollyday</artifactId> <version>0.5.10</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.jollyday</groupId> <artifactId>jollyday</artifactId> <name>Jollyday</name> <version>0.5.10</version> <description> This API determines the holidays for a given year, country/name and eventually state/region. The holiday data is stored in XML files (one for each country) and will be read from the classpath. You can provide your own holiday calendar XML file or use any of the provided ones. Currently there are 63 countries supported like the following: United States, most european countries, Russia, India, Australia. Besides those there will be more special calendars like currently existing NYSE calendar (New York Stock Exchange). </description> <url>http://sourceforge.net/projects/jollyday</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.scm.id>sourceforge.net</project.scm.id> <maven.site.skip>true</maven.site.skip> <maven.site.deploy.skip>true</maven.site.deploy.skip> </properties> <developers> <developer> <id>diedrichsen</id> <email>sven.diedrichsen@gmail.com</email> <name>Sven Diedrichsen</name> <roles> <role>Admin</role> <role>Developer</role> </roles> </developer> <developer> <id>tboven</id> <email>tim.boven@telenet.be</email> <name>Tim Boven</name> <roles> <role>Developer</role> </roles> </developer> <developer> <id>stlum9495</id> <email>stephen.lum@gmail.com</email> <name>Stephen Lum</name> <roles> <role>Developer</role> </roles> </developer> <developer> <id>jppereira</id> <email>jpereira@linkare.com</email> <name>José Pereira</name> <roles> <role>Developer</role> </roles> </developer> <developer> <id>paulozenida</id> <email>pzenida@linkare.com</email> <name>Paulo Zenida</name> <roles> <role>Developer</role> </roles> </developer> <developer> <id>soujavamisterm</id> <email>misterm@gmail.com</email> <name>Michael Nascimento Santos</name> <roles> <role>Developer</role> </roles> </developer> </developers> <issueManagement> <system>Sourceforge</system> <url>http://sourceforge.net/tracker/?group_id=299729&atid=1264280</url> </issueManagement> <inceptionYear>18.01.2010</inceptionYear> <scm> <connection>scm:git:git://github.com/svendiedrichsen/jollyday.git</connection> <developerConnection>scm:git:git@github.com:svendiedrichsen/jollyday.git</developerConnection> <url>https://github.com/svendiedrichsen/jollyday.git</url> <tag>v_0_5_10</tag> </scm> <build> <pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxb2-maven-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>com.github.davidmoten</groupId> <artifactId>jax-maven-plugin</artifactId> <version>0.1.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.7.1</version> <dependencies> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>3.2.0</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>4.3.0</version> </plugin> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-maven-plugin</artifactId> <version>4.1.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.1.1</version> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M2</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.3</version> <configuration> <excludes> <exclude>de.jollyday.config.*</exclude> </excludes> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.github.davidmoten</groupId> <artifactId>jax-maven-plugin</artifactId> <executions> <execution> <id>generate</id> <phase>generate-sources</phase> <goals> <goal>xjc</goal> </goals> <configuration> <systemProperties> <enableExternalEntityProcessing>true</enableExternalEntityProcessing> </systemProperties> <jvmArguments> <jvmArgument>-Xms32m</jvmArgument> </jvmArguments> <arguments> <!-- These are the arguments you would normally have put with a call to xjc --> <argument>-verbose</argument> <argument>-d</argument> <argument>${project.build.directory}/generated-sources/jaxb</argument> <argument>-target</argument> <argument>2.1</argument> <argument>-p</argument> <argument>de.jollyday.config</argument> <argument>${project.basedir}/src/main/xsd/Holiday.xsd</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-maven-plugin</artifactId> <executions> <execution> <goals> <goal>bnd-process</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <excludePackageNames>de.jollyday.config</excludePackageNames> <sourceFileExcludes>module-info.java</sourceFileExcludes> </configuration> <executions> <execution> <id>jar-javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <configuration> <repoToken>0bXE4PtLRrYe3KEJVWFbKjodK7GTPsuQD</repoToken> </configuration> <dependencies> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.4.0-b180830.0359</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-versions</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.0.5</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>signing</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jdk11</id> <activation> <jdk>[11,)</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>11</source> <target>11</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.4.0-b180830.0359</version> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <version>2.4.0-b180830.0438</version> </dependency> </dependencies> </profile> <profile> <id>jdk1</id> <activation> <jdk>(,1.8]</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <excludes> <exclude>module-info.java</exclude> </excludes> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.threeten</groupId> <artifactId>threeten-extra</artifactId> <version>1.5.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13-rc-2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.2.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xmlunit</groupId> <artifactId>xmlunit-core</artifactId> <version>2.6.3</version> <scope>test</scope> </dependency> </dependencies> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.0.0</version> <reportSets> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>3.0.0-M3</version> </plugin> </plugins> </reporting> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <site> <id>sourceforge.net</id> <url>scp://diedrichsen,jollyday@shell.sourceforge.net/home/project-web/jollyday/htdocs</url> <name>Sourceforge Site</name> </site> </distributionManagement> </project>