japlcontact
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.tagtraum</groupId> <artifactId>japlcontact</artifactId> <version>0.9.4</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>com.tagtraum</groupId> <artifactId>japlcontact</artifactId> <packaging>jar</packaging> <name>Japlcontact</name> <version>0.9.4</version> <description>Java API for the Apple Contacts app (macOS)</description> <url>https://github.com/japlscript/japlcontact</url> <inceptionYear>2021</inceptionYear> <licenses> <license> <name>LGPL</name> <url>http://www.gnu.org/licenses/lgpl.txt</url> <comments>LGPL</comments> </license> </licenses> <organization> <name>tagtraum industries incorporated</name> <url>https://www.tagtraum.com/</url> </organization> <developers> <developer> <id>hendrik</id> <name>Hendrik Schreiber</name> <email>hs@tagtraum.com</email> <url>https://www.tagtraum.com/</url> <organization>tagtraum industries incorporated</organization> <organizationUrl>https://www.tagtraum.com/</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <dependencies> <dependency> <groupId>com.tagtraum</groupId> <artifactId>japlscript-runtime</artifactId> <version>${japlscript.version}</version> </dependency> <dependency> <groupId>com.tagtraum</groupId> <artifactId>japlscript-generator</artifactId> <version>${japlscript.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <version>1.7.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.7.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <version>5.7.2</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.1.2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <!-- we need at least 3.6.0, so that JUnit 5 tests are run --> <version>3.6.0</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>9</source> <target>9</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <doctitle>${project.name} ${project.version}, Java API for Contacts.app generated by JaplScript ${japlscript.version} </doctitle> <windowtitle>${project.name} ${project.version}, Java API for Contacts.app generated by JaplScript ${japlscript.version} </windowtitle> <bottom> <![CDATA[ <div class="bottomNav" style="text-align: center; margin: 0; padding: 1em; height: auto;"> <a href="${project.url}">${project.name}</a> v${project.version} (${project.description} generated by <a href="https://github.com/japlscript/japlscript">JaplScript</a> v${japlscript.version} at ${maven.build.timestamp} UTC) </div> ]]> </bottom> <links> <link>https://docs.oracle.com/javase/9/docs/api/</link> <link>https://japlscript.github.io/japlscript/</link> </links> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.7</version> <executions> <execution> <configuration> <target> <property name="project.build.directory" value="${project.build.directory}"/> <ant antfile="${project.basedir}/src/main/japlscript/japlscript.xml" inheritRefs="true"/> </target> <sourceRoot>${project.build.directory}/generated-sources/main/java</sourceRoot> </configuration> <phase>generate-sources</phase> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>2.2</version> </extension> </extensions> </build> <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> </distributionManagement> <scm> <connection>scm:git:git://github.com/japlscript/japlcontact.git</connection> <developerConnection>scm:git:ssh://git@github.com/japlscript/japlcontact.git</developerConnection> <url>https://github.com/japlscript/japlcontact/tree/main</url> <tag>HEAD</tag> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/japlscript/japlcontact/issues</url> </issueManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <japlscript.version>3.4.11</japlscript.version> <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format> </properties> <profiles> <profile> <id>release</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <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> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </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> </plugins> </build> </profile> </profiles> </project>