Skip to content

Commit 18d6373

Browse files
committed
attached javadoc and sources
1 parent 612654f commit 18d6373

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

Diff for: pom.xml

+29
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,35 @@
6262
</configuration>
6363
</plugin>
6464

65+
<plugin>
66+
<groupId>org.codehaus.mojo</groupId>
67+
<artifactId>build-helper-maven-plugin</artifactId>
68+
<version>1.7</version>
69+
<executions>
70+
<execution>
71+
<id>attach-artifacts</id>
72+
<phase>package</phase>
73+
<goals>
74+
<goal>attach-artifact</goal>
75+
</goals>
76+
<configuration>
77+
<artifacts>
78+
<artifact>
79+
<file>src/main/native/jnetpcap-javadoc-${project.version}-1.zip</file>
80+
<type>jar</type>
81+
<classifier>-javadoc</classifier>
82+
</artifact>
83+
<artifact>
84+
<file>src/main/native/jnetpcap-src-${project.version}-1.zip</file>
85+
<type>jar</type>
86+
<classifier>-sources</classifier>
87+
</artifact>
88+
</artifacts>
89+
</configuration>
90+
</execution>
91+
</executions>
92+
</plugin>
93+
6594
<plugin>
6695
<artifactId>maven-surefire-plugin</artifactId>
6796
<version>2.11</version>

Diff for: src/main/native/README

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
jnetpcap-javadoc-VERSION-1.zip
2+
jnetpcap-src-VERSION-1.zip

0 commit comments

Comments
 (0)