Skip to content

Commit

Permalink
pom: attach source
Browse files Browse the repository at this point in the history
  • Loading branch information
g3force committed Oct 22, 2015
1 parent 67c3317 commit 3f5fac0
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.g3force.AndroidBluetoothProtobuf</groupId>
<artifactId>bluetoothprotobuf</artifactId>
<version>v1.1</version>
<version>v1.2</version>
<name>Bluetoothprotobuf</name>
<packaging>pom</packaging>

Expand All @@ -15,4 +15,35 @@
<module>libpc</module>
<!-- <module>libandroid</module> -->
</modules>

<build>
<sourceDirectory>src</sourceDirectory>
<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>
</project>

0 comments on commit 3f5fac0

Please sign in to comment.