I deployed my java projects artifacts on a repository server using mvn deploy command. When i deployed the artifacts (release version) this time i also deployed javadocs and source using following in code snippet.
<build>
<plugins>
<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>
<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>
</plugins>
</build>
Now I deployed the same project(Same release version) by commenting above snippet , maven dint delete extra artifacts (source and javadocs) .Is this expected?
This is normal behavior.
You should not re-deploy released versions. Here are the reasons:
When you've realized you have an issue with your code and you've already released, the advised practice (unless you're using a staging repository), is to just deploy a new release with an incremented number. The more often you deploy new versions (with reason, of course), the more confident the users of your library/product will be that the development is active and things are (hopefully) fixed. Re-deploying the same version silently will most-certainly cause chaos and sleepless nights.
Also, Maven doesn't:
maven-metadata.xml
filesThis is up to you. You need to rebuild the metadata using your artifact repository manager, if it's already deployed, (unless this is a snapshot).