Skip to content

Commit

Permalink
Fix javadoc, produce sources and javadoc resources.
Browse files Browse the repository at this point in the history
  • Loading branch information
gvenzl committed Aug 14, 2017
1 parent 0325b01 commit 4993713
Show file tree
Hide file tree
Showing 3 changed files with 663 additions and 609 deletions.
27 changes: 26 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.gvenzl</groupId>
<artifactId>oracle-perf-utils</artifactId>
<version>0.1.5</version>
<version>0.1.6</version>
<name>Oracle Performance Utilities</name>
<description>A collection of APIs that interface with various Oracle performance tuning features.</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
Expand All @@ -15,6 +18,28 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration></configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptor>src/assembly/src.xml</descriptor>
<finalName>${pom.artifactId}-${pom.version}</finalName>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
Expand Down
29 changes: 29 additions & 0 deletions src/assembly/src.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
<id>src</id>
<formats>
<format>tar.gz</format>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<includes>
<include>README*</include>
<include>LICENSE</include>
</includes>
</fileSet>
<fileSet>
<directory>src/main/java</directory>
<includes>
<include>**/*.java</include>
</includes>
</fileSet>
<fileSet>
<directory>src/test/java</directory>
<includes>
<include>**/*.java</include>
</includes>
</fileSet>
</fileSets>
</assembly>
Loading

0 comments on commit 4993713

Please sign in to comment.