lunar
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cn.6tail</groupId> <artifactId>lunar</artifactId> <version>1.7.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>cn.6tail</groupId> <artifactId>lunar</artifactId> <packaging>jar</packaging> <version>1.7.4</version> <name>${project.groupId}:${project.artifactId}</name> <url>https://github.com/6tail/lunar-java</url> <description>a calendar library for Solar and Chinese Lunar</description> <licenses> <license> <name>The MIT License</name> <url>http://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <name>6tail</name> <email>6tail@6tail.cn</email> <timezone>+8</timezone> </developer> </developers> <scm> <tag>master</tag> <connection>scm:git:git@github.com:6tail/lunar-java.git</connection> <developerConnection>scm:git:git@github.com:6tail/lunar-java.git</developerConnection> <url>git@github.com:6tail/lunar-java.git</url> </scm> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus snapshot repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Sonatype Nexus release repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <encoding>UTF-8</encoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <sourceEncoding>UTF-8</sourceEncoding> <source-version>1.5</source-version> <target-version>1.5</target-version> <creator>6tail</creator> <maven-compiler-plugin-version>3.3</maven-compiler-plugin-version> <maven-surefire-plugin-version>2.5</maven-surefire-plugin-version> <maven-javadoc-plugin-version>2.9</maven-javadoc-plugin-version> <maven-source-plugin-version>2.4</maven-source-plugin-version> <maven-release-plugin-version>2.2.2</maven-release-plugin-version> <maven-gpg-plugin-version>1.6</maven-gpg-plugin-version> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies> <build> <testSourceDirectory>src/test/java</testSourceDirectory> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <testOutputDirectory>target/test-classes</testOutputDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin-version}</version> <configuration> <source>${source-version}</source> <target>${target-version}</target> <encoding>${encoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin-version}</version> <configuration> <argLine>-Dfile.encoding=UTF-8</argLine> <skipTests>false</skipTests> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin-version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <javadocExecutable>${java.home}/../bin/javadoc</javadocExecutable> <additionalparam>-Xdoclint:none</additionalparam> <source>${source-version}</source> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin-version}</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-release-plugin</artifactId> <version>${maven-release-plugin-version}</version> <configuration> <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin-version}</version> <configuration> <passphrase>${gpg.passphrase}</passphrase> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2-beta-5</version> <configuration> <appendAssemblyId>false</appendAssemblyId> <finalName>${project.artifactId}-${project.version}</finalName> <descriptors> <descriptor>${basedir}/src/assembly/assembly.xml</descriptor> </descriptors> <archive> <manifestEntries> <Created-By>${creator}</Created-By> <Built-By>${creator}</Built-By> </manifestEntries> </archive> </configuration> </plugin> </plugins> <finalName>${project.artifactId}-${project.version}</finalName> </build> </project>