-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(file): add POST FILE and PUT FILE definitions (#53)
Use specific definitions to handle send file using a PUT or a POST http request.
- Loading branch information
Showing
24 changed files
with
1,439 additions
and
451 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<assembly | ||
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> | ||
<id>file-post-impl</id> | ||
<formats> | ||
<format>zip</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
<fileSets> | ||
<fileSet> | ||
<outputDirectory/> | ||
<directory>target/classes</directory> | ||
<includes> | ||
<include>rest-file-post.impl</include> | ||
<include>classpath</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet> | ||
<outputDirectory>classpath</outputDirectory> | ||
<directory>${basedir}/target</directory> | ||
<includes> | ||
<include>*-sources.jar</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet> | ||
<outputDirectory>classpath</outputDirectory> | ||
<directory>${basedir}/target</directory> | ||
<includes> | ||
<include>*:jar</include> | ||
</includes> | ||
</fileSet> | ||
</fileSets> | ||
<dependencySets> | ||
<dependencySet> | ||
<unpack>false</unpack> | ||
<scope>runtime</scope> | ||
<outputDirectory>classpath</outputDirectory> | ||
</dependencySet> | ||
</dependencySets> | ||
</assembly> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<assembly | ||
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> | ||
<id>file-put-impl</id> | ||
<formats> | ||
<format>zip</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
<fileSets> | ||
<fileSet> | ||
<outputDirectory/> | ||
<directory>target/classes</directory> | ||
<includes> | ||
<include>rest-file-put.impl</include> | ||
<include>classpath</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet> | ||
<outputDirectory>classpath</outputDirectory> | ||
<directory>${basedir}/target</directory> | ||
<includes> | ||
<include>*-sources.jar</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet> | ||
<outputDirectory>classpath</outputDirectory> | ||
<directory>${basedir}/target</directory> | ||
<includes> | ||
<include>*:jar</include> | ||
</includes> | ||
</fileSet> | ||
</fileSets> | ||
<dependencySets> | ||
<dependencySet> | ||
<unpack>false</unpack> | ||
<scope>runtime</scope> | ||
<outputDirectory>classpath</outputDirectory> | ||
</dependencySet> | ||
</dependencySets> | ||
</assembly> |
Oops, something went wrong.