Hello Spring Team,
Could you please publish your java source jars to the maven repository? It'd be very helpful to us consuming it.
I publish the code and docs by adding the snippet below to my pom.xml:
Code:<!-- Upload sources for IDEs --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Upload JavaDocs --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin>
Thank you,
Steven


