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