mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-30 21:08:30 +08:00
26 lines
811 B
XML
26 lines
811 B
XML
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
|
|
<id>apt-one-jar</id>
|
|
<formats>
|
|
<format>jar</format>
|
|
</formats>
|
|
<includeBaseDirectory>false</includeBaseDirectory>
|
|
<fileSets>
|
|
<fileSet>
|
|
<directory>src/apt</directory>
|
|
<outputDirectory>/</outputDirectory>
|
|
</fileSet>
|
|
<fileSet>
|
|
<directory>src/license</directory>
|
|
<outputDirectory>/license</outputDirectory>
|
|
</fileSet>
|
|
</fileSets>
|
|
<dependencySets>
|
|
<dependencySet>
|
|
<unpack>true</unpack>
|
|
</dependencySet>
|
|
</dependencySets>
|
|
</assembly>
|
|
|