Skip to content

Commit bae42dd

Browse files
Pom configuration for distribution
1 parent 71f0d12 commit bae42dd

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

pom.xml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,40 @@
161161

162162
<build>
163163

164+
<plugins>
165+
166+
<plugin>
167+
<groupId>org.apache.maven.plugins</groupId>
168+
<artifactId>maven-source-plugin</artifactId>
169+
<version>3.0.1</version>
170+
<executions>
171+
<execution>
172+
<id>attach-sources</id>
173+
<goals>
174+
<goal>jar</goal>
175+
</goals>
176+
</execution>
177+
</executions>
178+
</plugin>
179+
<plugin>
180+
<groupId>org.apache.maven.plugins</groupId>
181+
<artifactId>maven-javadoc-plugin</artifactId>
182+
<version>2.10.4</version>
183+
<configuration>
184+
<stylesheetfile>src/main/javadoc/stylesheet.css</stylesheetfile>
185+
</configuration>
186+
<executions>
187+
<execution>
188+
<id>attach-javadocs</id>
189+
<goals>
190+
<goal>jar</goal>
191+
</goals>
192+
</execution>
193+
</executions>
194+
</plugin>
195+
196+
</plugins>
197+
164198
</build>
165199

166200
<profiles>

0 commit comments

Comments
 (0)