hebrewcalendar
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.hebrewcalendar</groupId>
<artifactId>hebrewcalendar</artifactId>
<version>2.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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.hebrewcalendar</groupId>
<artifactId>hebrewcalendar</artifactId>
<version>2.1.0</version>
<packaging>jar</packaging>
<name>Hebrew Calendar</name>
<description>Jewish calendar computations: date conversion, festivals and fasts, zmanim,
Torah readings and haftarot, and the daily learning cycles.</description>
<url>https://imush.github.io/hebrewcalendar/</url>
<licenses>
<license>
<name>BSD 3-Clause License</name>
<url>https://github.com/imush/hebrewcalendar/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>imush</id>
<name>Isaac Mushinsky</name>
<url>https://github.com/imush</url>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/imush/hebrewcalendar.git</connection>
<developerConnection>scm:git:ssh://git@github.com/imush/hebrewcalendar.git</developerConnection>
<url>https://github.com/imush/hebrewcalendar</url>
</scm>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>testsrc</testSourceDirectory>
<resources>
<resource>
<directory>src</directory>
<includes>
<include>**/*.json</include>
</includes>
</resource>
</resources>
<testResources>
<testResource>
<directory>testsrc</directory>
<includes>
<include>**/*.json</include>
</includes>
</testResource>
<!-- The opentorah oracles, shared with the C library rather than
copied into each: see hebrewcalendar-data/oracle. -->
<testResource>
<directory>hebrewcalendar-data/oracle</directory>
<includes>
<include>*.tsv</include>
</includes>
</testResource>
</testResources>
<plugins>
<!-- Add hebrewcalendar-data/generated/java as an extra source root.
Fails clearly if the nested submodule wasn't initialized. -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<id>add-generated-source</id>
<phase>generate-sources</phase>
<goals><goal>add-source</goal></goals>
<configuration>
<sources>
<source>hebrewcalendar-data/generated/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<finalName>hebrewcalendar</finalName>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<configuration>
<release>11</release>
<windowtitle>Hebrew Calendar API</windowtitle>
<doctitle>Hebrew Calendar API</doctitle>
<notimestamp>true</notimestamp>
<doclint>none</doclint>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<!-- Publishing to Maven Central: sources and javadoc jars, signed, sent
through the Central Portal. Kept out of ordinary builds, which
would otherwise want a GPG key for every `mvn package`.
See RELEASING.md for the one-time account setup. -->
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals><goal>jar-no-fork</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</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.2.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals><goal>sign</goal></goals>
</execution>
</executions>
</plugin>
<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>false</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>