https://github.com/mybatis/mybatis-3
Raw File
Tip revision: 2bb7d63df0136109be73c325b106dfd673d80e1f authored by Nathan Maves on 20 May 2010, 15:27:19 UTC
[maven-release-plugin] prepare release mybatis-3.0.1
Tip revision: 2bb7d63
bundle.xml
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd">
  <id>bundle</id>
  <formats>
    <format>zip</format>
  </formats>
  <files>
    <file>
      <source>target/${project.artifactId}-${project.version}.${project.packaging}</source>
    </file>
    <file>
      <source>target/${project.artifactId}-${project.version}-sources.${project.packaging}</source>
    </file>
    <file>
      <source>LICENSE</source>
    </file>
    <file>
      <source>NOTICE</source>
    </file>
  </files>
  <dependencySets>
    <dependencySet>
      <outputDirectory>optional</outputDirectory>
    </dependencySet>
  </dependencySets>
</assembly>
back to top