2020-05-13 00:16:47 +00:00
|
|
|
<?xml version='1.0' encoding='UTF-8'?>
|
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.capnproto</groupId>
|
|
|
|
<artifactId>runtime</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<description>runtime</description>
|
2020-05-13 03:03:41 +00:00
|
|
|
<version>0.1.6-SNAPSHOT</version>
|
2020-05-13 00:16:47 +00:00
|
|
|
<name>Cap'n Proto runtime library</name>
|
|
|
|
<organization>
|
|
|
|
<name>org.capnproto</name>
|
|
|
|
</organization>
|
|
|
|
<url>https://capnproto.org/</url>
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT</name>
|
|
|
|
<url>http://opensource.org/licenses/MIT</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
<scm>
|
|
|
|
<url>git@github.com:capnproto/capnproto-java.git</url>
|
|
|
|
<connection>scm:git@github.com:capnproto/capnproto-java.git</connection>
|
|
|
|
</scm>
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>dwrensha</id>
|
|
|
|
<name>David Renshaw</name>
|
|
|
|
<url>https://github.com/dwrensha</url>
|
|
|
|
</developer>
|
2020-09-27 22:08:45 +00:00
|
|
|
<developer>
|
|
|
|
<id>vaci</id>
|
|
|
|
<name>Vaci Koblizek</name>
|
|
|
|
<url>https://github.com/vaci</url>
|
|
|
|
</developer>
|
2020-05-13 00:16:47 +00:00
|
|
|
</developers>
|
2020-05-13 21:56:01 +00:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2021-03-05 10:29:16 +00:00
|
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
|
|
<maven.compiler.target>11</maven.compiler.target>
|
2020-05-13 21:56:01 +00:00
|
|
|
</properties>
|
2020-05-13 00:16:47 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2020-10-13 21:56:39 +00:00
|
|
|
<version>4.13.1</version>
|
2020-05-13 00:16:47 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2020-05-13 00:41:36 +00:00
|
|
|
|
2020-05-13 02:41:15 +00:00
|
|
|
<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>
|
|
|
|
|
2020-05-13 00:41:36 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.3</version>
|
|
|
|
<configuration>
|
|
|
|
<compilerArgument>-Xlint:unchecked</compilerArgument>
|
2021-03-05 10:29:16 +00:00
|
|
|
<source>11</source>
|
|
|
|
<target>11</target>
|
2020-05-13 00:41:36 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-05-13 02:41:15 +00:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.2.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>2.10.3</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<failOnError>false</failOnError>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<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>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<version>1.6.6</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<serverId>ossrh</serverId>
|
|
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2020-05-13 00:16:47 +00:00
|
|
|
</project>
|