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>gwtexpui</groupId>
      <artifactId>gwtexpui</artifactId>
      <version>${gwtexpuiVersion}</version>
      <scope>compile</scope>
      <type>jar</type>
    </dependency>
    <dependency>
      <groupId>gwtexpui</groupId>
      <artifactId>gwtexpui</artifactId>
      <version>${gwtexpuiVersion}</version>
      <classifier>sources</classifier>
      <scope>provided</scope>
      <type>jar</type>
    </dependency>

Signed-off-by: Shawn O. Pearce <sop@google.com>
1 file changed
tree: 8798e3f164a2b64cd2aef7fdcadb87a3bbb3eac9
  1. .settings/
  2. src/
  3. .gitignore
  4. COPYING
  5. pom.xml