httpobjects-multipart
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.httpobjects.multipart</groupId>
<artifactId>httpobjects-multipart</artifactId>
<version>1.0.0.pre10</version>
</dependency><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>
<parent>
<artifactId>httpobjects-pom</artifactId>
<groupId>org.httpobjects.pom</groupId>
<version>1.0.0.pre10</version>
</parent>
<groupId>org.httpobjects.multipart</groupId>
<artifactId>httpobjects-multipart</artifactId>
<name>${project.artifactId}</name>
<build>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<header>${basedir}/../header.txt</header>
<strictCheck>false</strictCheck>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.0</version>
<configuration>
<release>8</release>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.6.0</version>
</dependency>
<dependency>
<groupId>org.httpobjects</groupId>
<artifactId>httpobjects</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>