New issue 65 by juliusda...@gmail.com: pom.xml should generate
json-simple-sources.jar
http://code.google.com/p/json-simple/issues/detail?id=65
- What steps will reproduce the problem?
1. mvn install
- What is the expected output? What do you see instead?
target/json-simple-1.1.1-sources.jar should exist, but it doesn't.
- What version of the product are you using? On what operating system?
1.1.1 on Linux with Oracle JDK 1.6.0_20-b02
Please provide any additional information below.
Add this to appropriate spot in 'pom.xml' and now sources.jar is
generated! Yay! Sources.jar is a handy jar to have in most IDE's, since
it helps developers debug their own code when it interacts with the
json-simple code.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
Comment #1 on issue 65 by fangyid...@gmail.com: pom.xml should generate
json-simple-sources.jar
http://code.google.com/p/json-simple/issues/detail?id=65
(No comment was entered for this change.)
Comment #2 on issue 65 by nossli...@gmail.com: pom.xml should generate