box-open-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.unofficialbox</groupId>
<artifactId>box-open-sdk</artifactId>
<version>0.2.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!-- Code generated by box-gantry 0.1.0 (spec ee7d55aedefe2fa0). DO NOT EDIT. -->
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>dev.unofficialbox</groupId>
<artifactId>box-open-sdk</artifactId>
<version>0.2.1</version>
<packaging>jar</packaging>
<name>box-open-sdk</name>
<description>Box API client for Java (open source, community, punk rock) — generated, dependency-light, typed models and async managers.</description>
<url>https://github.com/unofficialbox/box-open-java-sdk</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<name>box-gantry</name>
</developer>
</developers>
<scm>
<url>https://github.com/unofficialbox/box-open-java-sdk</url>
<connection>scm:git:https://github.com/unofficialbox/box-open-java-sdk.git</connection>
<developerConnection>scm:git:https://github.com/unofficialbox/box-open-java-sdk.git</developerConnection>
</scm>
<properties>
<maven.compiler.release>26</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<!-- Two-pass compile so the core SDK is a plain JDK-26 artifact and
only BoxChunkedUpload carries the preview flag (D-183): callers
who never touch chunked upload need no preview flag; those who
do add enable-preview at run time to unlock the parallel path. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<excludes>
<exclude>dev/unofficialbox/BoxChunkedUpload.java</exclude>
</excludes>
</configuration>
</execution>
<execution>
<id>compile-chunked-upload-preview</id>
<phase>compile</phase>
<goals><goal>compile</goal></goals>
<configuration>
<includes>
<include>dev/unofficialbox/BoxChunkedUpload.java</include>
</includes>
<compilerArgs><arg>--enable-preview</arg></compilerArgs>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals><goal>jar-no-fork</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<configuration>
<doclint>none</doclint>
<quiet>true</quiet>
<failOnError>false</failOnError>
<release>26</release>
<additionalOptions>
<additionalOption>--enable-preview</additionalOption>
</additionalOptions>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals><goal>jar</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- `mvn -P release deploy` signs the artifacts and publishes to
the Maven Central Portal. Kept in a profile so a plain
`mvn package` needs no GPG key. Requires a Central Portal user
token under server id `central` in settings.xml, and a GPG
secret key on the keyring. -->
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</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.11.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<!-- true: a validated deployment releases to Central on
upload. Set false to stage it and release by hand
from the Portal instead. -->
<autoPublish>true</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>