Create a source target rather than embedding sources

This way server deployments can include only the binary bytecode,
but clients can add the source JAR to their maven dependency list:

    <dependency>
      <groupId>gwtorm</groupId>
      <artifactId>gwtorm</artifactId>
      <version>${gwtormVersion}</version>
      <classifier>sources</classifier>
      <scope>provided</scope>
      <type>jar</type>
    </dependency>

Signed-off-by: Shawn O. Pearce <sop@google.com>
1 file changed