1167fb67ac
Jackson Annotations provides general-purpose annotations for the Jackson data processor. These annotations are used on value and handler types and do not contain the functionality that processes the annotations. WWW: https://github.com/FasterXML/jackson-annotations Sponsored by: Netzkommune GmbH Required for: FreeIPA server port
27 lines
652 B
Makefile
27 lines
652 B
Makefile
PORTNAME= jackson-annotations
|
|
DISTVERSION= 2.14.2
|
|
CATEGORIES= devel java
|
|
MASTER_SITES= https://repo1.maven.org/maven2/com/fasterxml/jackson/core/${PORTNAME}/${DISTVERSION}/
|
|
EXTRACT_SUFX= .jar
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= joneum@FreeBSD.org
|
|
COMMENT= Core annotations for the Jackson data processor
|
|
WWW= https://github.com/FasterXML/jackson-annotations
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USES= java:run
|
|
JAVA_VERSION= 8+
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= ${JAVAJARDIR}/jackson-annotations.jar
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${JAVAJARDIR}
|
|
${INSTALL_DATA} ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar
|
|
|
|
.include <bsd.port.mk>
|