Skip to content

Commit

Permalink
Add sources and javadoc to publish
Browse files Browse the repository at this point in the history
  • Loading branch information
alex268 committed Feb 13, 2024
1 parent 87145cb commit 612ebf8
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions jooq-dialect/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,40 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<source>11</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>ossrh-s01</id>
Expand Down

0 comments on commit 612ebf8

Please sign in to comment.