Skip to content

Commit

Permalink
Prepare for full release: add javadoc, source jars and version is 2.0…
Browse files Browse the repository at this point in the history
…, not SNAPSHOT.
  • Loading branch information
nishihatapalmer committed Jan 17, 2016
1 parent 43c5ce9 commit 9734038
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>net.byteseek</groupId>
<artifactId>byteseek</artifactId>
<version>2.0-SNAPSHOT</version>
<version>2.0</version>
<packaging>jar</packaging>

<build>
Expand All @@ -20,6 +20,30 @@
<target>1.6</target>
</configuration>
</plugin>
<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>

Expand Down

0 comments on commit 9734038

Please sign in to comment.